Wordpress-自定义“阅读更多”链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress-自定义“阅读更多”链接相关的知识,希望对你有一定的参考价值。

From Web Design Ledger "13 Useful Code Snippets for WordPress Development"
  1. // Edit index.php, replace the_content("Read more"); with the following code
  2. <?php $custommore = get_post_meta($post->ID, 'custom_more', true); ?>
  3. <?php if (!$custommore) { $custommore = 'Read More &raquo;'; } ?>
  4. <?php the_content($custommore); ?>

以上是关于Wordpress-自定义“阅读更多”链接的主要内容,如果未能解决你的问题,请参考以下文章

PHP 自定义在Wordpress中阅读更多

PHP 显示具有自定义摘录长度的帖子和自定义在WordPress中阅读更多文本

在Wordpress中自定义阅读更多

在WordPress中显示具有自定义摘录长度和自定义阅读更多文本的文章

在 wordpress 中阅读更多链接

php 修改WordPress阅读更多链接