উত্তর:
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',
);
}
হ্যা এটা সম্ভব. এই উদাহরণটি আমি খুব সহায়ক বলে মনে করেছি।
আমার মাথায় আসা আরও একটি পন্থা টেমপ্লেট ফাইলটি থিম তৈরি করতে ডাব্লুপি ফাইল সিস্টেম এপিআই ব্যবহার করছে । আমি নিশ্চিত যে এটি নেওয়া সেরা পন্থা, তবে আমি নিশ্চিত যে এটি কার্যকর!
পূর্ববর্তী উত্তরগুলির কোনওটিই আমার পক্ষে কাজ করছে না। এখানে একটি যেখানে আপনি ওয়ার্ডপ্রেস অ্যাডমিনে আপনার টেম্পলেট চয়ন করতে পারেন। এটি কেবল আপনার মূল পিএইচপি প্লাগইন ফাইলটিতে রেখে 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;
}