אם תרצו להשתמש בעורך הקלאסי (Classic Editor) עבור CPT מסוים, הוסיפו את הקוד הבא. לעוד על יצירת סוגי תוכן מותאמים.
add_filter( 'use_block_editor_for_post_type', function( $use, $post_type ) {
if ( $post_type === 'your_post_type' ) {
return false;
}
return $use;
}, 10, 2 );החליפו your_post_type ב-slug של ה-CPT.