【问题标题】:Change Read More link WordPress更改阅读更多链接 WordPress
【发布时间】:2012-11-01 20:39:47
【问题描述】:

我想更改 WordPress 中的“阅读更多”链接,我在 <!-- more --> 中找到了一些教程,我可以在 <!-- more Proceed... --> 中写其他东西(这不起作用)。 在 index.php 中我应该编辑 <?php the_content('Read More..,'); ?>,但在我的 index.php 中没有 Read More 文本,看起来像这样 <?php the_content(''); ?>,它是空的,它仍然显示 Read More on posts。

还有其他想法如何改变它?

【问题讨论】:

    标签: wordpress button hyperlink


    【解决方案1】:

    你可以改

    <?php the_content(''); ?> 
    

    随心所欲。所以你可以做到:

    <?php the_content('more Proceed... '); ?> 
    

    或任何你想要的。 “阅读更多...”是您保持打开状态时的默认设置。

    【讨论】:

    • 在这种情况下,我得到了两个阅读更多链接。旧的阅读更多内容仍在帖子中
    【解决方案2】:

    在function.php文件中添加这段代码

    // Replaces the excerpt "more" text by a link
    function new_excerpt_more($more) {
       global $post;
       return '<a class="moretag" href="'. get_permalink($post->ID) . '"> Read more...      </a>';
    }
    add_filter('excerpt_more', 'new_excerpt_more');
    

    【讨论】:

      猜你喜欢
      • 2015-02-04
      • 2013-03-25
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-12-29
      • 1970-01-01
      • 2011-01-17
      相关资源
      最近更新 更多