如何在wp_EDITOR()中添加设置特色图像按钮?

时间:2013-05-29 作者:Saurabh

我正在使用一个插件,在该插件中添加wordpress默认编辑器(wp\\U编辑器),并添加功能以使用添加媒体功能保存帖子。

添加媒体功能非常好,可以将媒体添加到相应的帖子中,但我想将图像添加为缩略图,但无法将设置特色图像按钮添加到添加媒体按钮。

这是我为添加WordPress默认编辑器而编写的代码:

wp_editor( $post_content , \'productinfoeditor\', array(
\'media_uploads\'=>true,
\'textarea_name\' => \'product_info_content\', 
\'editor_class\' => \'requiredField\', 
\'teeny\' => true, 
\'textarea_rows\' => 14
) );
在中function.php 文件

add_theme_support( \'post-thumbnails\', array(\'post\',\'page\', \'product\' ) );
并通过以下方式保存帖子:

$post = array();
$post[\'post_type\'] = \'product\';
$post[\'post_content\'] = $product_info_content;
$post[\'post_author\'] = $user_ID;
$post[\'post_status\'] = \'publish\';
$post[\'post_title\'] = $product_title;
$post_id = wp_insert_post( $post );

1 个回复
SO网友:Nathan Powell

你的product 岗位类型应支持thumbnail. See the codex for more info on supports.

结束

相关推荐