我想用更多链接替换[...]
:
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();
}
?>
有什么问题?
答案 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' );