我不太了解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个帖子就好了,但我不想让它在第5个帖子的底部显示<hr/>
。
答案 0 :(得分:5)
在while
循环中设置一些逻辑,以有条件地显示<hr >
。
例如:
$i = 0;
while (have_posts()) {
++$i;
the_post();
// ...
if ($i < 5) {
$content .= '<hr />';
}
}
注意: WordPress可能不会返回5个帖子,因此您应该考虑该路径。我也会在紧密的循环中阻止字符串连接。重构您的代码并使用echo
。
答案 1 :(得分:4)
答案 2 :(得分: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');
?>