0

我不太了解 PHP,所以我希望当我问这个问题时我会展示足够的代码。我的主页有一部分将显示最新的 5 篇博客文章,因此我将其设置为:

<?php
function get_latest_post_html() {
    $content = "";
    query_posts('showposts=5');
    while (have_posts()){
        the_post();
        $content .= "<p class='title'><a href='" . get_permalink() . "'>" . get_the_title() . "</a></p>\n" .
                "<p class='excerpt'><a href='" . get_permalink() . "'><img src='" . wp_get_attachment_url( get_post_thumbnail_id($post->ID) ) . "' class='rt-image img-left wp-post-image' style='max-width:175px;'/></a>" . get_the_excerpt() . "</p><br/><hr/>";
    }
    wp_reset_query();

    return "<div class='latest-post'>\n$content\n</div>";
}

add_shortcode('get_latest_post', 'get_latest_post_html');
?>

它可以很好地调用最后 5 个帖子,但我不想让它显示在<hr/>第 5 个帖子的底部。

4

3 回答 3

5

while在循环中设置一些逻辑以有条件地显示<hr >.

例如:

$i = 0;
while (have_posts()) {
  ++$i;
  the_post();

  // ...

  if ($i < 5) {
    $content .= '<hr />';
  }
}

注意: WordPress 可能不会返回 5 个帖子,因此您应该考虑该路径。我也反对紧密循环中的字符串连接。重构您的代码并使用echo.

于 2012-08-22T19:09:41.120 回答
4

既然你只需要摆脱最后一个<hr/>.

尝试使用substr() 所以在你的情况下,在 while 循环结束后添加这个

$content = substr($content, 0, -5)

于 2012-08-22T19:12:01.620 回答
0
<?php

function get_latest_post_html() {
    $content = "";
    query_posts('showposts=5');
    $i = 0;
    while (have_posts()){
    i++;
        if(i < 5){
        the_post();
            $content .= "<p class='title'><a href='" . get_permalink() . "'>" . get_the_title() . "</a></p>\n" .
                    "<p class='excerpt'><a href='" . get_permalink() . "'><img src='" . wp_get_attachment_url( get_post_thumbnail_id($post->ID) ) . "' class='rt-image img-left wp-post-image' style='max-width:175px;'/></a>" . get_the_excerpt() . "</p><br/><hr/>";
        }
        else{
        $i = 0;
        //do something
        }
    }
    wp_reset_query();

    return "<div class='latest-post'>\n$content\n</div>";
}

add_shortcode('get_latest_post', 'get_latest_post_html');
?>
于 2012-08-22T19:12:28.240 回答