尝试创建自定义帖子类型时,帖子类型框未显示?

时间:2011-07-08 作者:SamY

我有一个自定义的帖子类型,在我的函数中设置了以下内容。php。问题是,即使在我指定了\'supports\' => array(\'title\',\'editor\',\'thumbnail\'),. 我有什么遗漏吗?

add_theme_support( \'post-thumbnails\', array( \'post\' ) );

// Register Talents
add_action(\'init\', \'register_talents\');

function register_talents() {

    $labels = array(
        \'name\' => _x(\'Talents\', \'post type general name\'),
        \'singular_name\' => _x(\'Talent\', \'post type singular name\'),
        \'add_new\' => _x(\'Add New\', \'talent item\'),
        \'add_new_item\' => __(\'Add New Talent\'),
        \'edit_item\' => __(\'Edit Talent\'),
        \'new_item\' => __(\'New Talent\'),
        \'view_item\' => __(\'View Talent\'),
        \'search_items\' => __(\'Search Talents\'),
        \'not_found\' =>  __(\'Nothing found\'),
        \'not_found_in_trash\' => __(\'Nothing found in Trash\'),
        \'parent_item_colon\' => \'\'
    );

    $args = array(
        \'labels\' => $labels,
        \'public\' => true,
        \'publicly_queryable\' => true,
        \'show_ui\' => true,
        \'query_var\' => true,
        \'rewrite\' => true,
        \'capability_type\' => \'post\',
        \'hierarchical\' => false,
        \'menu_position\' => null,
        \'menu_icon\' => get_stylesheet_directory_uri() . \'/images/menu-talents.png\',
        \'supports\' => array(\'title\',\'editor\',\'thumbnail\'),
        \'has_archive\' => true
      );

    register_post_type( \'talents\' , $args );
}

2 个回复
SO网友:Chip Bennett

尝试更改此选项:

add_theme_support( \'post-thumbnails\', array( \'post\' ) );
对此:

add_theme_support( \'post-thumbnails\' );
IIRC,该数组是显式的,这意味着通过只包含post, 其他一切都被排除在外。但如果省略该数组,则会为所有支持缩略图的帖子类型添加帖子缩略图支持。

SO网友:Rutwick Gangurde

这应该有用。。。

add_theme_support(\'post-thumbnails\', array(\'talents\'));
其中“人才”是您的自定义职位类型。我注意到,对于WP中的几个函数和挂钩,您多次需要将“post”/“posts”替换为自定义post类型的名称,以使其与自定义post一起工作。例如,如果你要将“publish\\u post”与“talents”一起使用,你必须使用“publish\\u talents”。

阅读以下内容:http://codex.wordpress.org/Function_Reference/add_theme_support查看为“movie”类型的自定义帖子添加缩略图支持的示例。

结束

相关推荐