douyi2798 2017-07-30 19:19
浏览 52
已采纳

Wordpress get_the_date()仅检索帖子ID

I have created a loop of posts in my wp homepage where 5 recent posts are shown one below the other. The code to loop wp data is

$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>';
}

The Title section works perfectly, but Date section only shows the ID of the post and nothing else.

What am I doing wrong?

  • 写回答

2条回答 默认 最新

  • douhuan2101 2017-07-30 19:22
    关注

    Look at the documentation : https://codex.wordpress.org/Function_Reference/get_the_date

    First parameters is format, second is ID, so :

    // whatever your format
    get_the_date('Y-m-d', $v)
    

    To get your default Wordpress site date format :

    $date_format = get_option( 'date_format' );
    get_the_date( $date_format, $post_id );
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀