我正在运行这个
PHP代码来循环遍历wordpress帖子:
原文链接:https://www.f2er.com/php/138878.html$posts = get_posts('numberposts=10&order=ASC&orderby=post_title'); foreach ($posts as $post) { setup_postdata( $post ); the_date(); echo '<br />'; ?> <a href="/blog2/"><?PHP the_title(); ?></a> <?PHP the_excerpt(); ?> <br><hr /><br> <?PHP }
我希望能够显示每个帖子的post_name或’slug’
我尝试过使用echo $posts-> post_name;但它没有显示任何东西