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中的内容/摘录下添加“阅读更多”按钮的主要内容,如果未能解决你的问题,请参考以下文章

php 使用Genesis中的博客模板在博客帖子页面或页面上添加介绍文本

php 从提供的内容中生成摘录。剥离HTML,删除尾随标点符号,并在删除文本时添加“更多”字符串。

php 为标题和徽标添加Genesis支持

php 修改Genesis内容限制阅读更多链接

php 如果在Genesis主题中启用了JavaScript,则添加一个小内联脚本以将`js`类附加到body标记

php 使用genesis_footer_creds_text过滤器更改Genesis中的页脚文本