我知道如何创建单个页面和存档页面,但现在我正在尝试将所有内容移动到自定义插件中。到目前为止,我创建了自定义帖子类型“位置”,并创建了我的文件
/templates/archive-location.php
/templates/single-location.php
如何让mysite.com/locations在我的自定义插件中读取我的archive-location.php。
*** ****更新 我能够让我的单页工作。现在我该怎么做才能将它包含在任何网站中?例如,我不知道他们的布局,我应该包括页眉和页脚吗?
我需要它,所以如果我删除我的插件,mysite.com/locations就不存在了。
答案 0 :(得分:0)
以下是在自定义插件激活期间动态创建自定义模板的代码。
假设我想创建第一个和第二个页面,我想为其分配自定义模板。
将自定义插件的主要文件中的代码放在自定义插件的索引文件下面。
/* Runs when plugin is activated */
register_activation_hook(__FILE__,'news_plugin_install');
/* Runs on plugin deactivation*/
register_deactivation_hook( __FILE__, 'news_plugin_remove' );
function news_plugin_install() {
$newsGagPages = array(
'First Page',
'Second Page'
);
foreach ($newsGagPages as $postTitle) {
$my_post = array(
'post_title' =>$postTitle,
'post_status' => 'publish',
'post_author' => 1,
'post_type' => 'page',
'post_status'=>'publish');
if(!get_page_by_title($postTitle))
{
$pageID = wp_insert_post($my_post,true);
}
if($postTitle =="First Page" ){
add_post_meta( $pageID, '_wp_page_template', 'template-first.php' );
}
if($postTitle =="Second Page" ){
add_post_meta( $pageID, '_wp_page_template', 'template-second.php' );
}
}
}
class PageTemplater {
/* A Unique Identifier */
protected $plugin_slug;
/**
* A reference to an instance of this class.
*/
private static $instance;
/**
* The array of templates that this plugin tracks.
*/
protected $templates;
/**
* Returns an instance of this class.
*/
public static function get_instance() {
if( null == self::$instance ) {
self::$instance = new PageTemplater();
}
return self::$instance;
}
/**
* 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(
'template-first.php' => 'First',
'template-second'=>'Second ',
);
}
/**
* Adds our template to the pages cache in order to trick WordPress
* into thinking the template file exists where it doens't really exist.
*
*/
public function register_project_templates( $atts ) {
// Create the key used for the themes cache
$cache_key = 'page_templates-' . md5( get_theme_root() . '/' . get_stylesheet() );
// Retrieve the cache list.
// If it doesn't exist, or it's empty prepare an array
$templates = wp_get_theme()->get_page_templates();
if ( empty( $templates ) ) {
$templates = array();
}
// New cache, therefore remove the old one
wp_cache_delete( $cache_key , 'themes');
// Now add our template to the list of templates by merging our templates
// with the existing templates array from the cache.
$templates = array_merge( $templates, $this->templates );
// Add the modified cache to allow WordPress to pick it up for listing
// available templates
wp_cache_add( $cache_key, $templates, 'themes', 1800 );
return $atts;
}
/**
* Checks if the template is assigned to the page
*/
public function view_project_template( $template ) {
global $post;
if (!isset($this->templates[get_post_meta($post->ID, '_wp_page_template', true)] ) ) {
return $template;
}
$file = plugin_dir_path(__FILE__). get_post_meta($post->ID, '_wp_page_template', true);
// Just to be safe, we check if the file exist first
if( file_exists( $file ) ) {
return $file;
}else {
echo $file;
}
return $template;
}
}
add_action( 'plugins_loaded', array( 'PageTemplater', 'get_instance' ) );