如何在同一篇文章中显示摘录?
示例:
<?php
if ( the_excerpt() != '' ) {
echo $my_excerpt;
}
?>
但这不起作用!
答案 0 :(得分:1)
the_excerpt()将回显摘录,get_the_excerpt()将返回摘录。所以尝试这样的事情:
<?php
$my_excerpt = get_the_excerpt();
if ( $my_excerpt != '' ) {
echo $my_excerpt;
}
?>