我的帖子显示来自其他帖子的帖子有问题,而不仅仅是单独的帖子。其他部分很好,即没有其他重复,只有标题。
生成内容的代码:
get_header();
$the_query = new WP_Query( 'category_name=careers&showposts=5' );
while ( $the_query->have_posts() ) :
$output = "";
$the_query->the_post();
$output_title .= get_the_title();
$output_content .= get_the_content();
$output_type = get_field('job_type');
$output_salary = get_field('job_salary');
$output_intro = get_field('job_intro');
$careers.= '
<div class="careers">
<h3>'.$output_title.'</h3>
<p class="type">'.$output_type.'</p>
<p class="salary">'.$output_salary.'</p>
<p>'.$output_intro.'</p>
</div>
';
endwhile;
wp_reset_postdata();
所以发生的事情是,最新的帖子显示单个标题,这很好,但是第二个帖子显示其标题+最新,第三个职位帖子显示其标题+ 2 + 1。例如:
应该是:
答案 0 :(得分:2)
好吧,看起来你正在连接字符串,即删除=
前面的点$output_title .= get_the_title();
应该是
$output_title = get_the_title();
答案 1 :(得分:1)
问题是由您使用$output_title .= get_the_title()
引起的。 .=
应更改为=
。
while ( $the_query->have_posts() ) :
$output = "";
$the_query->the_post();
$output_title = get_the_title(); // Change this line
endwhile;