Bootstrap中的水平帖子

时间:2013-10-12 12:43:53

标签: php wordpress twitter-bootstrap-3

我似乎无法对此发现太多,这可能是我写这个问题的方式。 我想在主页上创建一段内容,其中包含列。 - 让我们说3。

我想在这三列中显示最新的三篇新闻帖子。 什么是最好的方法呢?

我仍然是编码的新手,虽然我正在研究它,但我还没有完全掌握php,所以我很难挣扎,因为我不知道从哪里开始。

我是在一个主题的基础上实现的,我在教程的帮助下从头开始构建,但不知道哪些是相关的,我真的很想了解我现在在做什么。

1 个答案:

答案 0 :(得分:2)

检查http://codex.wordpress.org/Function_Reference/wp_get_recent_posts以及此页面上的示例。如果你得到类似的东西:

<h2>Recent Posts</h2>
<div class="row">
<?php
    $args = array( 'numberposts' => '3' );
    $recent_posts = wp_get_recent_posts( $args );
    foreach( $recent_posts as $recent ){
        echo '<div class="col-sm-4"><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' .   $recent["post_title"].'</a> </div> ';
    }
?>
</div>