Wordpress-自定义“阅读更多”链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress-自定义“阅读更多”链接相关的知识,希望对你有一定的参考价值。
From Web Design Ledger "13 Useful Code Snippets for WordPress Development"
// 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); ?>
以上是关于Wordpress-自定义“阅读更多”链接的主要内容,如果未能解决你的问题,请参考以下文章
PHP 显示具有自定义摘录长度的帖子和自定义在WordPress中阅读更多文本