我是WordPress插件开发的新手。我正在开发一个简单的WordPress插件,其中get_the_excerpt()在循环中不起作用。其他标签,如get_the_title(),get_the_permalink()甚至get_the_content()工作正常。请有人帮我解决这个问题。这是代码
if($loop->have_posts()) :
while($loop->have_posts()) :
$loop->the_post();
$content .= '<li><a href="'.get_permalink().'">'.get_the_title().'</a><br />'.get_the_excerpt().'</li>';
endwhile; wp_reset_postdata(); endif;
答案 0 :(得分:0)
'get_the_excerpt。'
缺少括号
'.get_the_excerpt().'