我在WPMU(如果这很重要),但据我所知,插件应该正常工作......通常的规则应该适用。
我试图使用过滤器add_filter( 'single_template', 'ss_get_stock_image_template' );
,但未调用它。这里有什么问题吗?
function ss_get_stock_image_template($single_template) {
global $post;
if ($post->post_type == 'image') {
$single_template = ss_img_lib. 'single-image.php';
}
return $single_template;
}
add_filter( 'single_template', 'ss_get_stock_image_template' );
答案 0 :(得分:0)
令我惊讶的是,更改我的自定义帖子类型声明中的menu_position
修复了它...哇...