最近の投稿が5つ下に表示されている私のwpホームページに投稿のループを作成しました。 ループWPデータにコードがWordpress get_the_date()は投稿IDのみを取得します
$args = array('numberposts'=>'5');
$recentposts = wp_get_recent_posts($args);
foreach($recentposts as $post){
$v = $post['ID'];
echo 'Title:'.get_the_title($v).'<br>';
echo 'Date:' .get_the_date($v).'<br>';
}
あるタイトル部分は完璧に動作しますが、日付部分のみがポストと他には何のIDを示します。
私は間違っていますか?ドキュメントを
関数の参照を調べて、どのパラメータが必要かを確認してください。-https://developer.wordpress.org/reference/functions/get _the_date/ –