前提・実現したいこと
WordPressの予約投稿日時、「秒」単位まで設定できるようにしたい。
発生している問題・エラーメッセージ
エラーメッセージ
該当のソースコード
php
1function save_future( $new_status, $old_status, $post ) { 2 if ($new_status === 'future' && $old_status !== 'future') { 3 $post_id = $post->ID; 4 do_action('save_post', $post_id, $post); 5 $post_date = $post->post_date; 6 $post_date = date("Y-m-d H:i:00", strtotime($post_date)); 7 $post_date_gmt = $post->post_date_gmt; 8 $post_date_gmt = date("Y-m-d H:i:00", strtotime($post_date_gmt)); 9 $post_val = array( 10 'ID' => $post_id, 11 'post_date' => $post_date, 12 'post_date_gmt' => $post_date_gmt, 13 ); 14 wp_update_post( $post_val ); 15 } 16 return; 17}
試したこと
上記コードをfunctions.phpに記述しましたが、「秒」が表示されませんでした。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー