Get_the_excerpt()在插件循环中不起作用 时间:2014-04-30 作者:Babu 我是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; 1 个回复 SO网友:TheDeadMedic <罢工>不同the_excerpt(), 如果内容不存在,则自动生成内容摘录,get_the_excerpt() 仅返回post_excerpt 字段罢工>相反,使用apply_filters( \'the_excerpt\', get_the_excerpt() ), 这将触发与the_excerpt(), 但返回输出,而不是回显输出。 结束 文章导航