将特色图像添加到自定义帖子类型

时间:2015-02-04 10:03:32

标签: php wordpress plugins custom-post-type

我有一个插件,可以创建一个名为 popup 的自定义帖子类型。但它没有在编辑页面上添加特色图像元框。我可以进入插件并像这样添加它。

'supports' => apply_filters( 'popmake_popup_supports', array( 'title', 'editor', 'revisions', 'author', 'thumbnail' ) ),

这有效,直到插件更新。 在我的主题中,我添加了这个:

add_theme_support('post-thumbnails', array('post', 'page', 'popup'));

但是这并没有将Meta-Box广告到自定义帖子类型。

问题:是否可以在我的插件之外添加此功能,也许在我的functions.php文件中,以便我可以更新插件?

修改 使用免费插件高级自定义字段结束,让med添加多个精选图片。 http://www.advancedcustomfields.com/

1 个答案:

答案 0 :(得分:0)

现在你在functions.php文件中使用正确的代码。它会起作用。 请按照我的说明使用functions.php文件中的下面一行代码。 这是代码。

function custom_theme_setup() {
    add_theme_support( 'post-thumbnails', array('post', 'page', 'popup') );
}

add_action( 'after_setup_theme', 'custom_theme_setup');

现在如果仍然不起作用,请指定操作的优先级。 请参阅here

像这样:

add_action( 'after_setup_theme', 'custom_theme_setup',2 );