我在 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' );