2018-02-15から1日間の記事一覧

ウィジェット表示時にフィルタを無効にする p br 消す

function clean_widget_display_callback( $instance, $widget, $args ) { $instance['filter'] = false; return $instance; } add_filter( 'widget_display_callback', 'clean_widget_display_callback', 10, 3);

カスタマイザーメモ 01

functions.php function theme_customizer_extension($wp_customize) { $wp_customize->add_section( 'header_01', array( 'title' => __( 'TOP ヘッダー エリア カスタマイズ', 'celtisone' ), コンテンツエリア 01 セクション 'priority' => 1, ) ); $wp_c…

WP グーグルマップ カスタムフィールド メモ

functions.php /*##################### カスタムフィールドボックス グーグルマップ ######################## *//*##################### カスタムフィールドボックス グーグルマップ ######################## */// 固定カスタムフィールドボックスfuncti…