想要在侧边栏中显示最近帖子的前100个字符,然后“阅读更多”

时间:2013-08-09 03:35:56

标签: wordpress sidebar

我正在wordpress上创建我的第一个自定义主题,并尝试熟悉该手抄本。我的侧边栏右下方有一个“新闻”部分。我希望它显示最后两个帖子的预览。基本上希望它只显示标题,日期,然后显示最近一个帖子的前100个字符,然后是“Read More”锚点。知道我可以用什么功能吗?

1 个答案:

答案 0 :(得分:0)

这是一种方法:

<h2>Recent Posts</h2>
<ul>
<?php
    $args = array( 'numberposts' => '2' );
    $recent_posts = wp_get_recent_posts( $args );
    foreach( $recent_posts as $recent ){
        echo '<li>'.$recent["post_title"].' - '.$recent["post_excerpt"].'<a href="'.get_permalink($recent["ID"]).'">Read More</a></li>';
    }
?>
</ul>

此处有更多信息:http://codex.wordpress.org/Function_Reference/wp_get_recent_posts