はじめに – 変更前後のイメージ
この修正内容はテスト中ですので、修正前にオリジナルの membership-template/edit_blog.php を必ずバックアップしておいてください。
カテゴリIDを確認するには WordPressで「カテゴリーID」を調べる方法 をご覧ください。
membership-template/edit_blog.phpの127行目を修正
修正前:’echo’ => 1,
修正後:’exclude_tree’ => ‘19,21,31,32’,
※プログラムの総行数を変更したくなかったため、初期値が 1 である echo の行を利用しています
修正前:
wp_dropdown_categories( array(
'class' => '',
'echo' => 1,
'hide_empty' => 0,
'hierarchical' => 0,
'id' => '',
'name' => 'category',
'selected' => $tcd_membership_post->category,
'taxonomy' => 'category',
'show_option_none' => __( 'Select category', 'tcd-w' ),
'option_none_value' => '',
'show_count' => 0,
'value_field' => 'term_id',
'required' => true
) );
修正後:
wp_dropdown_categories( array(
'class' => '',
'exclude_tree' => '19,21,31,32',
'hide_empty' => 0,
'hierarchical' => 1,
'id' => '',
'name' => 'category',
'selected' => $tcd_membership_post->category,
'taxonomy' => 'category',
'show_option_none' => __( 'Select category', 'tcd-w' ),
'option_none_value' => '',
'show_count' => 0,
'value_field' => 'term_id',
'required' => true
) );
コメント