我想提供自定义帖子类型作为插件,以便人们可以使用它而无需触摸主题文件夹。但是自定义帖子类型模板(例如single-movies.php)位于主题文件夹中。有没有办法让WP检查插件文件夹中的single-movies.php?将函数挂接到Filer层次结构中?或get_template_directory(); ?
我想提供自定义帖子类型作为插件,以便人们可以使用它而无需触摸主题文件夹。但是自定义帖子类型模板(例如single-movies.php)位于主题文件夹中。有没有办法让WP检查插件文件夹中的single-movies.php?将函数挂接到Filer层次结构中?或get_template_directory(); ?
Answers:
您可以使用single_template
过滤器挂钩。
/* Filter the single_template with our custom function*/
add_filter('single_template', 'my_custom_template');
function my_custom_template($single) {
global $post;
/* Checks for single template by post type */
if ( $post->post_type == 'POST TYPE NAME' ) {
if ( file_exists( PLUGIN_PATH . '/Custom_File.php' ) ) {
return PLUGIN_PATH . '/Custom_File.php';
}
}
return $single;
}
get_query_template()
函数调用。这是一个变量钩子,因此第一部分{$type}_template
根据传递给该函数的参数而变化。参见wp-includes / template.php了解一些常见的内容
PLUGIN_PATH
为plugin_dir_path( __FILE__ )
,然后从文件名中删除第一个斜杠。完整路径如下所示:return plugin_dir_path( __FILE__ ) . 'Custom_File.php';
更干净,更短的版本。
function load_movie_template( $template ) {
global $post;
if ( 'movie' === $post->post_type && locate_template( array( 'single-movie.php' ) ) !== $template ) {
/*
* This is a 'movie' post
* AND a 'single movie template' is not found on
* theme or child theme directories, so load it
* from our plugin directory.
*/
return plugin_dir_path( __FILE__ ) . 'single-movie.php';
}
return $template;
}
add_filter( 'single_template', 'load_movie_template' );
在主题文件夹中的@Brainternet答案中添加了对自定义帖子类型特定模板的检查。
function load_cpt_template($template) {
global $post;
// Is this a "my-custom-post-type" post?
if ($post->post_type == "my-custom-post-type"){
//Your plugin path
$plugin_path = plugin_dir_path( __FILE__ );
// The name of custom post type single template
$template_name = 'single-my-custom-post-type.php';
// A specific single template for my custom post type exists in theme folder? Or it also doesn't exist in my plugin?
if($template === get_stylesheet_directory() . '/' . $template_name
|| !file_exists($plugin_path . $template_name)) {
//Then return "single.php" or "single-my-custom-post-type.php" from theme directory.
return $template;
}
// If not, return my plugin custom post type template.
return $plugin_path . $template_name;
}
//This is not my custom post type, do nothing with $template
return $template;
}
add_filter('single_template', 'load_cpt_template');
现在,您可以让插件用户将模板从插件复制到其主题以覆盖它。
在此示例中,模板必须位于插件和主题的根目录中。
我正在为插件使用一种更好的方法。
正如@campsjos 在这里提到的那样,您可以检查
locate_template
将要签入主题覆盖模板文件的文件,而不是检查文件是否存在。这是很明显的。
function my_plugin_templates() {
if (is_singular('movie')) {
if (file_exists($this->template_dir . 'single-movie.php')) {
return $this->template_dir . 'single-movie.php';
}
}
}
使用template_include
筛选器挂钩加载以上代码。
add_filter('template_include' , 'my_plugin_templates');
感谢此页面,我能够为我解决相同的问题。
供参考,这就是我最终得到的:
function pluginName_myposttype_single_template($single_template) {
$myposttype_template = PLUGIN_DIR . 'templates/single-myposttype.php';
return get_post_type() === 'myposttype' && file_exists($myposttype_template) ? $myposttype_template : $single_template;
}
add_filter('single_template', 'pluginName_myposttype_single_template');
{$ type} _template过滤器挂钩对我不起作用
function pluginName_myposttype_single_template($single_template) {
$myposttype_template = PLUGIN_DIR . 'templates/single-myposttype.php';
if ( file_exists($myposttype_template) ) {
$single_template = $myposttype_template;
}
return $single_template;
}
add_filter('single-myposttype_template', 'pluginName_myposttype_single_template');
上面是一个很好的答案,但是检查$ single var允许模板覆盖由主题/子主题提供的模板。
/* Filter the single_template with our custom function*/
add_filter('single_template', 'your_cpt_custom_template');
function your_cpt_custom_template( $single ) {
global $wp_query, $post;
/* Checks for single template by post type */
if ( !$single && $post->post_type == 'cpt' ) {
if( file_exists( plugin_dir_path( __FILE__ ) . 'single-cpt.php' ) )
return plugin_dir_path( __FILE__ ) . 'single-cpt.php';
}
return $single;
}