如何在wordpress中调用the_content函数后删除更多的读取?

时间:2018-02-20 08:51:34

标签: php wordpress

我想在调用wordpress的__tent()函数后删除read-more链接。我只想在循环中显示每个帖子的内容,而read-more链接是多余的。

我尝试使用此代码,但在发布内容后仍然可以阅读更多链接:

add_filter( 'the_content_more_link', 'disable_more_link', 10, 2 );

function disable_more_link( $more_link, $more_link_text ) {
    return;
 }

我可以在哪里找到在内容之后添加此read-more链接的代码?

2 个答案:

答案 0 :(得分:1)

    You can use a filter to remove the read-more link from content. I have updated your filter. Please try it, It's working fine.

    function disable_more_link( $link ) {
        $link = preg_replace( '|#more-[0-9]+|', '', '' );
        return $link;
    }
   add_filter( 'the_content_more_link', 'disable_more_link', 10, 2 );

答案 1 :(得分:0)

More info

function new_excerpt_more($more) {
    return '...';
}
add_filter('excerpt_more', 'new_excerpt_more');