我正在使用wp-insert-post在wordpress中动态创建帖子。该脚本位于外部文件中,我已经包含了wp-load.php文件以利用那里的wordpress函数。我的查询是,在使用wp-insert-post函数时,我们可以使用默认参数,但是我们如何包含插件使用的参数(在本例中为Facebook)。
我希望设置此参数:facebook_page_message_box_message
我尝试使用:
$post = array();
$post['post_type'] = 'post';
$post['post_title'] = 'Custom title';
$post['post_content'] = 'Custom content';
$post['post_author'] = '1';
$post['facebook_page_message_box_message'] = 'Custom Title (to be displayed on the Facebook timeline, when the post is published)';
$post_id = wp-insert-post($post);
但这不起作用。我也试过使用像wordpress这样的功能, Wp_set_object_terms,但即使这样也无效。
答案 0 :(得分:3)