前提・実現したいこと
Wordpressの固定ページでビジュアルエディタを無効にし、かつ特定の固定ページは除外したいです。
現状post_idで特定のページを除外しようと試みているのですが、上手くいきません。
下記のソースコードでおかしな点がありますでしょうか...?
また良い方法がございましたらご教示いただけますと幸いです。
お力添えいただけますと幸いです。よろしくお願いいたします。
該当のソースコード
functions.php
1function disable_visual_editor_in_page() { 2 global $typenow; 3 if( $typenow == 'page'){ 4 if ( $post_id != 'ID') { 5 add_filter('user_can_richedit', 'disable_visual_editor_filter'); 6 } 7 } 8} 9function disable_visual_editor_filter(){ 10 return false; 11} 12add_action('load-post.php', 'disable_visual_editor_in_page'); 13add_action('load-post-new.php', 'disable_visual_editor_in_page');
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。