2

投稿日時を変更する必要があるプラグインがあります。これを行うには、どの WP 関数を使用すればよいですか?

ありがとう

4

1 に答える 1

5

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);
于 2012-10-28T23:56:28.160 に答える