我正在尝试在我的博客摘录底部获取“阅读更多”链接,并在主题中设置选项内容。我无法弄清楚要放在哪里的代码。我不知道如何应用法典推荐
<?php
$excerpt = get_the_excerpt();
if ( $blog_content == 'Content' ) {
the_content( '', FALSE, '' );
}
else if ( $blog_content == 'Excerpt' && $excerpt != '' ){
the_excerpt('',FALSE,'');
} ?>
感谢您提前获得任何反馈。
答案 0 :(得分:0)
如果您使用的是get_the_excerpt,那么必须在循环中使用该标记。 所以在page.php或single.php就是一个例子。