我正在使用一个插件,在该插件中添加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 );