wordpress - 替换...阅读更多

时间:2014-01-13 09:53:52

标签: php wordpress

我想用更多链接替换[...]

function replace_excerpt($content) {
    return str_replace('[...]',
           '<a href="'. get_permalink() .'">Read More →</a>',
           $content
    );
}
add_filter('the_excerpt', 'replace_excerpt');

我不知道为什么它对我不起作用!

我打电话给摘录:

<?php
    if ( is_singular() ) {
        the_content();
    } else {
        the_excerpt();
    }
?>

有什么问题?

1 个答案:

答案 0 :(得分:1)

function new_excerpt_more( $more ) {
    return ' <a class="read-more" href="'. get_permalink( get_the_ID() ) . '">...Read More</a>';
}
add_filter( 'excerpt_more', 'new_excerpt_more' );