如果你想禁用某種自定義文章類型的可視化編輯器,可以將下面的代碼添加到主題的 functions.php 即可:
/**
* WordPress 禁用自定義文章類型的可視化編輯器
* http://www.ydqwiac.cn/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 行的文章類型。
聲明:本站所有文章,如無特殊說明或標注,均為本站原創(chuàng)發(fā)布。任何個人或組織,在未征得本站同意時,禁止復制、盜用、采集、發(fā)布本站內容到任何網站、書籍等各類媒體平臺。如若本站內容侵犯了原著者的合法權益,可聯(lián)系我們進行處理。




