如何让摘录上的“更多”或“继续阅读”链接不被关注?

时间:2012-04-02 作者:keruilin

我试着让我的每一篇文章节选的链接都指向完整的文章“nofollow”,如下所示:

<a href="<?php the_permalink() ?>" rel="nofollow">&rarr; Continue Reading</a>
然而,这似乎不起作用。我对WP/PHP非常陌生,那么我需要做什么呢?

1 个回复
最合适的回答,由SO网友:Johannes Pille 整理而成

在主题的函数中。php:

/* Returns a "Continue Reading" link for excerpts, with \'nofollow\' set */
function your_theme_continue_reading_link() {
    return \' <a href="\'. get_permalink() . \'" rel="nofollow">\' .
        \'<span class="meta-nav">&rarr;</span> Continue reading</a>\';
}
/* Replaces "[...]" (appended to automatically generated excerpts) */
function your_theme_auto_excerpt_more( $more ) {
    return \' &hellip;\' . your_theme_continue_reading_link();
}
add_filter( \'excerpt_more\', \'your_theme_auto_excerpt_more\' );

结束

相关推荐

使用phpMyAdmin移动数据库

我有一个wordpress网站的远程(网站)版本,它比我的本地(计算机)版本获得了更多的最新信息。我想使用phpMyAdmin将数据移动到本地,最好的方法是什么?我应该只导出整个数据库,导入它并将我的wordpress站点重新链接到配置文件中的“新”(更新)数据库吗?