在Wordpress bootstrap下拉菜单中显示最近的帖子

时间:2016-01-04 18:23:47

标签: php wordpress twitter-bootstrap

我为我的WordPress主题创建了一个自定义引导程序Navwalker类。使用下面的代码可以正常工作。我将此代码放在function start_el(){}

if (!empty($item->divideto_4)) {
    $col = 3;
    $divide_to = 12 / $col; //4

    for ($i=0; $i<$divide_to; $i++) {
        $item_output .= '<div class="col-sm-'.$col.'">'.get_the_title().'</div>';
    }
}

我的问题:代码重复上一篇文章四次,并且不会显示最后四篇帖子。我想让它向我展示最近的四个帖子。我怎么能这样做?

0 个答案:

没有答案