php 如何在Genesis中的内容/摘录下添加“阅读更多”按钮

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 如何在Genesis中的内容/摘录下添加“阅读更多”按钮相关的知识,希望对你有一定的参考价值。

add_action( 'genesis_entry_content', 'custom_add_read_more' );
/**
 * Add Read More button below post excerpts/content on archives.
 * by Sridhar Katakam
 */
function custom_add_read_more() {
    // if this is a singular page, abort.
    if ( is_singular() ) {
        return;
    }

    printf( '<a href="%s" class="more-link button">%s</a>', get_permalink(), esc_html__( 'Continue Reading' ) );
}

以上是关于php 如何在Genesis中的内容/摘录下添加“阅读更多”按钮的主要内容,如果未能解决你的问题,请参考以下文章