0

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

4

1 回答 1

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

于 2013-08-09T04:09:37.187 回答