php 为自动和自定义摘录添加更多链接。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 为自动和自定义摘录添加更多链接。相关的知识,希望对你有一定的参考价值。
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
//* Add Read More Link to Automatic and Custom Excerpts Site-wide
add_filter( 'the_excerpt', 'sp_read_more_custom_excerpt' );
function sp_read_more_custom_excerpt( $text ) {
if ( strpos( $text, '[…]') ) {
$excerpt = str_replace( '[…]', '<a class="more-link" href="' . get_permalink() . '">[Read More…]…</a>', $text );
} else {
$excerpt = $text . '<a class="more-link" href="' . get_permalink() . '">[Read More…]</a>';
}
return $excerpt;
}
以上是关于php 为自动和自定义摘录添加更多链接。的主要内容,如果未能解决你的问题,请参考以下文章
在WordPress中显示具有自定义摘录长度和自定义阅读更多文本的文章
PHP 添加更多链接到所有摘录
为所有摘录添加更多链接
css 添加阅读更多链接到摘录 - Qpractice
php 如何在Genesis中的内容/摘录下添加“阅读更多”按钮
删除摘录阅读更多链接 WP REST API