इस उदाहरण में आप आसानी से सेट कर सकते हैं कि आप किस पोस्ट प्रकार के प्रकाशन विकल्पों को छिपाना चाहते हैं, उदाहरण उन्हें बिल्ड-इन बर्तनों के प्रकार page
और कस्टम पोस्ट प्रकार के लिए छिपाता है cpt_portfolio
।
/**
* Hides with CSS the publishing options for the types page and cpt_portfolio
*/
function wpse_36118_hide_minor_publishing() {
$screen = get_current_screen();
if( in_array( $screen->id, array( 'page', 'cpt_portfolio' ) ) ) {
echo '<style>#minor-publishing { display: none; }</style>';
}
}
// Hook to admin_head for the CSS to be applied earlier
add_action( 'admin_head', 'wpse_36118_hide_minor_publishing' );
महत्वपूर्ण अद्यतन
मैं आपको ड्राफ्ट के रूप में बचत पोस्ट से बचने के लिए "प्रकाशित" की एक पोस्ट की स्थिति को मजबूर करने का सुझाव दूंगा:
/**
* Sets the post status to published
*/
function wpse_36118_force_published( $post ) {
if( 'trash' !== $post[ 'post_status' ] ) { /* We still want to use the trash */
if( in_array( $post[ 'post_type' ], array( 'page', 'cpt_portfolio' ) ) ) {
$post['post_status'] = 'publish';
}
return $post;
}
}
// Hook to wp_insert_post_data
add_filter( 'wp_insert_post_data', 'wpse_36118_force_published' );