0

wp-insert-post を使用して、ワードプレスで動的に投稿を作成しています。スクリプトは外部ファイルにあり、そこでワードプレス機能を利用するために wp-load.php ファイルを含めました。私の質問は、 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);

しかし、これは機能していません。Wp_set_object_terms などのワードプレス関数も使用してみましたが、それでも機能しませんでした。

4

1 に答える 1

3

https://github.com/facebookarchive/wordpress/blob/master/admin/social-publisher/publish-box-page.php

次のリンクは、追加情報を提供する場合があります

于 2015-02-19T06:19:14.473 に答える