我如何列出最近的帖子摘录?

时间:2013-01-05 作者:Ronny K

我直接从抄本中引用这篇文章来列出最近的3篇文章的标题。

<ul>
<?php
$args = array( \'numberposts\' => \'3\');
$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>
但是,当我将post\\u标题更改为post\\u摘录时,它不会显示摘录。

我如何解决这个问题?

1 个回复
SO网友:fuxia

从中窃取代码get_the_excerpt():

apply_filters( \'get_the_excerpt\', $recent[\'post_excerpt\'] )

结束

相关推荐

Enclose title within a div?

我正在使用此代码在首页中显示一个页面。我想学习如何添加div/间隔符来隔离页面标题。。。如果我试图在php代码中添加div类,那么它会抛出错误。Question: How can I add a div to the title within this bit of code?<div class=\"frontpage\"> <?php $page_id = 2945; $page_data = get_page( $page_id ); echo