その他Tips
WordPressでたまーに使う系のTipsを掲載
目次
function.phpに書く系
-
term_descriptionのPタグを削除
-
//term_description() でPタグを削除する remove_filter('term_description','wpautop');
-
固定ページの編集画面でビジュアルエディタを非表示
-
//固定ページでビジュアルエディタ非表示 function disable_visual_editor_in_page(){ global $typenow; if( $typenow == 'page' ){ add_filter('user_can_richedit', 'disable_visual_editor_filter'); } } function disable_visual_editor_filter(){ return false; } add_action( 'load-post.php', 'disable_visual_editor_in_page' ); add_action( 'load-post-new.php', 'disable_visual_editor_in_page' );
その他
-
固定ページでテンプレートを作る方法
-
//好きなPHPファイルを作り(名前はなんでも良い)上部に以下コードを入れる。