जवाबों:
get_page_template()
page_template
फ़िल्टर के माध्यम से ओवरराइड किया जा सकता है । यदि आपका प्लगइन उन फाइलों के रूप में टेम्प्लेट के साथ एक निर्देशिका है, तो यह केवल इन फ़ाइलों के नामों को पारित करने की बात है। यदि आप उन्हें "फ्लाई पर" बनाना चाहते हैं (उन्हें व्यवस्थापक क्षेत्र में संपादित करें और उन्हें डेटाबेस में सहेजें?), तो आप उन्हें कैश डायरेक्टरी में लिखना चाहते हैं और उन्हें संदर्भित कर सकते हैं, या template_redirect
कुछ पागल eval()
सामान कर सकते हैं। ।
एक प्लगइन के लिए एक सरल उदाहरण है कि "प्लग इन" एक ही प्लगइन निर्देशिका में एक फ़ाइल के लिए अगर एक निश्चित मानदंड सच है:
add_filter( 'page_template', 'wpa3396_page_template' );
function wpa3396_page_template( $page_template )
{
if ( is_page( 'my-custom-page-slug' ) ) {
$page_template = dirname( __FILE__ ) . '/custom-page-template.php';
}
return $page_template;
}
ओवरराइडिंग get_page_template()
सिर्फ एक त्वरित हैक है। यह टेम्प्लेट को व्यवस्थापक स्क्रीन से चुनने की अनुमति नहीं देता है और पृष्ठ स्लग को हार्ड-कोड किया जाता है ताकि उपयोगकर्ता को यह जानने का कोई तरीका न हो कि टेम्पलेट कहाँ से आ रही है।
पसंदीदा समाधान इस ट्यूटोरियल का अनुसरण करना होगा जो आपको प्लग-इन से बैक-एंड में पेज टेम्पलेट को पंजीकृत करने की अनुमति देता है। फिर यह किसी अन्य टेम्पलेट की तरह काम करता है।
/*
* Initializes the plugin by setting filters and administration functions.
*/
private function __construct() {
$this->templates = array();
// Add a filter to the attributes metabox to inject template into the cache.
add_filter('page_attributes_dropdown_pages_args',
array( $this, 'register_project_templates' )
);
// Add a filter to the save post to inject out template into the page cache
add_filter('wp_insert_post_data',
array( $this, 'register_project_templates' )
);
// Add a filter to the template include to determine if the page has our
// template assigned and return it's path
add_filter('template_include',
array( $this, 'view_project_template')
);
// Add your templates to this array.
$this->templates = array(
'goodtobebad-template.php' => 'It\'s Good to Be Bad',
);
}
हाँ यह संभव है। मुझे यह उदाहरण प्लगइन बहुत मददगार लगा।
एक और दृष्टिकोण जो मेरे सिर में आया है वह थीम के लिए टेम्पलेट फ़ाइल बनाने के लिए WP फाइलसिस्टम एपीआई का उपयोग कर रहा है । मुझे यकीन नहीं है कि यह लेने के लिए सबसे अच्छा तरीका है, लेकिन मुझे यकीन है कि यह काम करेगा!
पिछले उत्तरों में से कोई भी मेरा काम नहीं कर रहा था। यहां आप Wordpress व्यवस्थापक में अपना टेम्पलेट चुन सकते हैं। बस इसे अपने मुख्य php प्लगइन फाइल में template-configurator.php
डालें और अपने टेम्पलेट नाम से बदलें
//Load template from specific page
add_filter( 'page_template', 'wpa3396_page_template' );
function wpa3396_page_template( $page_template ){
if ( get_page_template_slug() == 'template-configurator.php' ) {
$page_template = dirname( __FILE__ ) . '/template-configurator.php';
}
return $page_template;
}
/**
* Add "Custom" template to page attirbute template section.
*/
add_filter( 'theme_page_templates', 'wpse_288589_add_template_to_select', 10, 4 );
function wpse_288589_add_template_to_select( $post_templates, $wp_theme, $post, $post_type ) {
// Add custom template named template-custom.php to select dropdown
$post_templates['template-configurator.php'] = __('Configurator');
return $post_templates;
}