投稿日時を変更する必要があるプラグインがあります。これを行うには、どの WP 関数を使用すればよいですか?
ありがとう
wp_update_post($post)
新しいpost_date
値で使用したい- http://codex.wordpress.org/Function_Reference/wp_update_post
$mypost = array();
$mypost['ID'] = 111; // the post ID you want to update
$mypost['post_date'] = $your_date; // uses 'Y-m-d H:i:s' format
wp_update_post($mypost);