web-dev-qa-db-ja.com

投稿日時を機能で変更する

投稿の投稿日時を現在の日時に更新するために使用できる機能は何ですか。

6
Swen

'post_date''post_date_gmt'に特別な値を指定してwp_update_post()を呼び出します。

$time = current_time('mysql');

wp_update_post(
    array (
        'ID'            => 123, // ID of the post to update
        'post_date'     => $time,
        'post_date_gmt' => get_gmt_from_date( $time )
    )
);
16
fuxia