如果你想禁用某種自定義文章類型的可視化編輯器,可以將下面的代碼添加到主題的 functions.php 即可:
1 2 3 4 5 6 7 8 9 10 11 |
/** * WordPress 禁用自定義文章類型的可視化編輯器 * https://www.wpdaxue.com/disable-wysiwyg-editor-for-custom-post-types.html */ add_filter( 'user_can_richedit', 'disable_wysiwyg_editor_for_cpt' ); function disable_wysiwyg_editor_for_cpt( $default ) { global $post; if ( get_post_type( $post ) == 'question') // 請修改 question 為你的文章類型 return false; return $default; } |
/**
* WordPress 禁用自定義文章類型的可視化編輯器
* https://www.wpdaxue.com/disable-wysiwyg-editor-for-custom-post-types.html
*/
add_filter( ‘user_can_richedit’, ‘disable_wysiwyg_editor_for_cpt’ );
function disable_wysiwyg_editor_for_cpt( $default ) {
global $post;
if ( get_post_type( $post ) == ‘question’) // 請修改 question 為你的文章類型
return false;
return $default;
}
請根據自己的實際,修改代碼的第 8 行的文章類型。