मेरे पास यह कस्टम पोस्ट प्रकार है:
function create_posttype() {
register_post_type( 'companies',
array(
'labels' => array(
'name' => __( 'شرکتهای عضو' ),
'singular_name' => __( 'شرکت' )
),
'supports' => array('title', 'editor', 'custom-fields', 'excerpt', 'thumbnail'),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'companies'),
)
);
}
add_action( 'init', 'create_posttype' );
जो वर्डप्रेस एडमिन एरिया में क्लासिक एडिटर दिखाता है। मैंने tried एडिटर ’को supports गुटेनबर्ग’ के साथ सपोर्टिंग एरे में बदलने की कोशिश की जो काम नहीं करता है। मैंने अपने सुझाव में इस कोड को यहाँ सुझाया है :
add_filter('gutenberg_can_edit_post_type', 'prefix_disable_gutenberg');
function prefix_disable_gutenberg($current_status, $post_type)
{
if ($post_type === 'companies') return true;
return $current_status;
}
मैं अपने कस्टम पोस्ट प्रकार पर गुटेनबर्ग संपादक कैसे हो सकता हूं?