投稿の投稿日時を現在の日時に更新するために使用できる機能は何ですか。
'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 )
)
);