我想知道如何使用 Wordpress 在帖子区域内获取最近的帖子?
我有来自 WordPress 网站的这段代码,用于获取最近的帖子:
wp_get_recent_posts( $args, $output);
如果我在帖子页面正文(我写帖子的地方)内回显这个函数,我只会得到显示为文本的确切 php 代码?
<h2>Recent Posts</h2>
<ul>
<?php
$args = array( 'numberposts' => '5' );
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){
echo '<li><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' . $recent["post_title"].'</a> </li> ';
}
?>
</ul>
用于显示最近 5 个帖子的其他代码也以文本形式呈现到帖子页面,我不知道为什么?
如何正确使用?