0

我有以下代码,但似乎阅读更多链接不起作用,请有人介意协助,我激活了函数文件中的摘录:

查询下面的帖子:-

<?php $the_query = new WP_Query( 'showposts=5' ); ?>
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php the_excerpt('Read more...'); ?>
<a href="<?php echo get_permalink(); ?>"> Read More...</a>
<?php endwhile;?>
4

2 回答 2

0

一个一直很好地服务于我的项目的简单解决方案是声明一个简单的函数,functions.php如下所示:

add_filter('excerpt_more', 'new_excerpt_more');
function new_excerpt_more($more) {
    global $post;
    return '… <a href="'. get_permalink($post->ID) . '">' . 'Read More ...' . '</a>';
}

然后在需要的地方调用摘录:

<?php the_excerpt(); ?> 

希望这会有所帮助,WP codex 在摘录http://codex.wordpress.org/Excerpt上也有一些很棒的文档

于 2013-03-04T03:22:36.623 回答
0

您可以使用此编辑器按钮:

在此处输入图像描述

拆分内容:

在此处输入图像描述

或者

在此处输入图像描述

然后它将在您的概览页面上显示如下:

在此处输入图像描述

在默认主题二十十二中,您使用以下代码:

<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>

显示Continue reading链接。

因此,在您的情况下,您可以使用:

<?php the_content("Read more ...");?>
于 2013-03-03T13:34:45.700 回答