我想知道如何使用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个帖子的其他代码也会以文本形式呈现给帖子页面,我不知道为什么?
如何正确使用?
答案 0 :(得分:1)
我不确定你对“邮政区域”的意思。使用“字符串文本输出”,我认为你的意思是列表中没有格式化的文本链接。
如果您需要更多地控制如何格式化输出(例如,使其更像常规帖子列表),请使用常规WP查询。您可以使用以下参数获取5个最新博客条目:
$recent_args = array(
"posts_per_page" => 5,
"orderby" => "date",
"order" => "DESC"
);
$recent_posts = new WP_Query( $recent_args );
要遍历它们,只需使用常规的WordPress主循环结构:
if ( $recent_posts -> have_posts() ) :
while ( $recent_posts -> have_posts() ) :
$recent_posts -> the_post();
// ... Use regular 'the_title()', 'the_permalink()', etc. loop functions here.
endwhile;
endif;