在Wordpress中显示同一页面上的摘录

时间:2013-04-24 16:10:56

标签: wordpress

如何在同一篇文章中显示摘录?

示例:

<?php
if ( the_excerpt() != '' ) {
echo $my_excerpt; 
}
?>

但这不起作用!

1 个答案:

答案 0 :(得分:1)

the_excerpt()将回显摘录,get_the_excerpt()将返回摘录。所以尝试这样的事情:

<?php
  $my_excerpt = get_the_excerpt();
  if ( $my_excerpt != '' ) {
    echo $my_excerpt; 
  }
?>