0

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

1 回答 1

0

令我惊讶的是,menu_position在我的自定义帖子类型声明中更改它修复了它......哇......

于 2014-05-05T07:00:03.423 回答