पेज टेम्पलेट का उपयोग करें
स्केलेबिलिटी के लिए एक और तरीका यह होगा कि आप page
अपने कस्टम पोस्ट टाइप के लिए पोस्ट टाइप पर पेज टेम्पलेट ड्रॉप-डाउन कार्यक्षमता को डुप्लिकेट करें ।
पुन: प्रयोज्य कोड
कोड में डुप्लीकेशन एक अच्छा अभ्यास नहीं है। ओवरटाइम करने पर यह एक कोडबेस के लिए गंभीर ब्लोट का कारण बन सकता है जब तब किसी डेवलपर के लिए इसे प्रबंधित करना बहुत मुश्किल हो जाता है। हर एक स्लग के लिए एक टेम्प्लेट बनाने के बजाय, आपको सबसे अधिक एक-से-कई टेम्प्लेट की आवश्यकता होगी जो कि एक-से-एक पोस्ट-टू-टेम्प्लेट के बजाय पुन: उपयोग किए जा सकते हैं।
कोड
# Define your custom post type string
define('MY_CUSTOM_POST_TYPE', 'my-cpt');
/**
* Register the meta box
*/
add_action('add_meta_boxes', 'page_templates_dropdown_metabox');
function page_templates_dropdown_metabox(){
add_meta_box(
MY_CUSTOM_POST_TYPE.'-page-template',
__('Template', 'rainbow'),
'render_page_template_dropdown_metabox',
MY_CUSTOM_POST_TYPE,
'side', #I prefer placement under the post actions meta box
'low'
);
}
/**
* Render your metabox - This code is similar to what is rendered on the page post type
* @return void
*/
function render_page_template_dropdown_metabox(){
global $post;
$template = get_post_meta($post->ID, '_wp_page_template', true);
echo "
<label class='screen-reader-text' for='page_template'>Page Template</label>
<select name='_wp_page_template' id='page_template'>
<option value='default'>Default Template</option>";
page_template_dropdown($template);
echo "</select>";
}
/**
* Save the page template
* @return void
*/
function save_page_template($post_id){
# Skip the auto saves
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
return;
elseif ( defined( 'DOING_AJAX' ) && DOING_AJAX )
return;
elseif ( defined( 'DOING_CRON' ) && DOING_CRON )
return;
# Only update the page template meta if we are on our specific post type
elseif(MY_CUSTOM_POST_TYPE === $_POST['post_type'])
update_post_meta($post_id, '_wp_page_template', esc_attr($_POST['_wp_page_template']));
}
add_action('save_post', 'save_page_template');
/**
* Set the page template
* @param string $template The determined template from the WordPress brain
* @return string $template Full path to predefined or custom page template
*/
function set_page_template($template){
global $post;
if(MY_CUSTOM_POST_TYPE === $post->post_type){
$custom_template = get_post_meta($post->ID, '_wp_page_template', true);
if($custom_template)
#since our dropdown only gives the basename, use the locate_template() function to easily find the full path
return locate_template($custom_template);
}
return $template;
}
add_filter('single_template', 'set_page_template');
यह थोड़ा देर से जवाब है, लेकिन मुझे लगा कि यह मूल्यवान होगा क्योंकि वेब पर किसी ने भी इस दृष्टिकोण को प्रलेखित नहीं किया है जहां तक मैं बता सकता हूं। आशा है कि यह किसी को बाहर करने में मदद करता है।