如何添加“阅读更多...”链接在22:20

时间:2020-04-06 作者:Wed

enter image description here

我如何在2020年修复此问题,以便显示“阅读更多”按钮或其他内容?

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

通过转到主题编辑器,您可以在functions.php文件:

  function twentytwentychild_excerpt_more_add_continue_reading( $more ) {
    return \' [...] <div class="read-more-button-wrap"><a href="\' . get_permalink( get_the_ID() ) . \'" class="more-link"><span class="faux-button">Continue reading</span> <span class="screen-reader-text">“\' . get_the_title( get_the_ID() ) . \'”</span></a></div>\';
}
add_filter(\'excerpt_more\', \'twentytwentychild_excerpt_more_add_continue_reading\' );
资料来源:https://wordpress.org/support/topic/continue-reading-doesnt-appear/