如何重写此函数,以便如果我在索引页面上,则会读取更多文本。
function wpdocs_excerpt_more( $more ) {
return '...' . '<div class="read-more"><a href="'.get_the_permalink().'" rel="nofollow">Read More</a></div>';
}
add_filter( 'excerpt_more', 'wpdocs_excerpt_more' );
在index.php
我想说“阅读全文”。如果我们更进一步并指定wp_query
怎么办?这样就可以在模板文件中多次修改它。
从此功能中移除.read-more
并在echo
中使用wp-query
会更容易吗?
答案 0 :(得分:1)
function wpdocs_excerpt_more( $more ) {
// depending on how you set up your home page, you will use either "is_home()" or "is_front_page()"
$more_text = is_home() ? 'Read The Full Article' : 'Read More';
return '...' . '<div class="read-more"><a href="'.get_the_permalink().'" rel="nofollow">' . $more_text . '</a></div>';
}
add_filter( 'excerpt_more', 'wpdocs_excerpt_more' );
如果您不确定是否应使用is_home()
或is_front_page()
,请参考此处:https://wordpress.stackexchange.com/questions/30385/when-to-use-is-home-vs-is-front-page