PHP Wordpress - 自定义“阅读更多”您的帖子的链接

Posted

tags:

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

// Edit index.php, replace the_content("Read more"); with the following code
<?php $custommore = get_post_meta($post->ID, 'custom_more', true); ?>
<?php if (!$custommore) { $custommore = 'Read More »'; } ?>
<?php the_content($custommore); ?>

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

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

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

在Wordpress中自定义阅读更多

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

php 修改WordPress阅读更多链接

php 将帖子页面上的默认[..]更改为自定义“阅读更多”链接。