get_the_date();显示 wordpress 安装日期,而不是 post

get_the_date(); displays the date of wordpress installation, not post

我无法在 wordpress 中显示每个 post 的日期。对于每个 post 它都显示安装日期,而不是 post 日期(每个 post 都是在不同的日期发布的,但现在都显示相同的日期,这似乎是随机的)。尝试将 get_the_date();在 for each lopp 没有运气。有谁知道为什么?

$postsnumber = $nm_theme_options['numberposts']; 
        $args = array( 'numberposts' => "$postsnumber" );
        $recent_posts = wp_get_recent_posts( $args );
        $date = get_the_date(); 
        foreach( $recent_posts as $recent ){                 
            echo '<li><a href="' . get_permalink($recent["ID"]) . '">' .  $date .' '. $recent["post_title"].'</a> </li> ';
    }

找到了解决我的问题的方法!

<?php
        $postsnumber = $nm_theme_options['numberposts']; 
        $args = array( 'numberposts' => "$postsnumber" );
        $recent_posts = wp_get_recent_posts( $args );

        foreach( $recent_posts as $recent ){    
            echo '<li><a href="' . get_permalink($recent["ID"]) . '">' .  date('d.m.y', strtotime($recent['post_date'])) .' '. $recent["post_title"].'</a> </li> ';
    }
    ?>

抱歉,我是新手,但感谢您的帮助!