php 自定义摘录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 自定义摘录相关的知识,希望对你有一定的参考价值。
<?php
/**
* CUSTOM EXCERPT
*********************************************************************** */
$excerpt_length = 70; // enter in your own custom character limit.
// add more link to excerpt
function excerpt_read_more_link($output) {
global $post;
global $excerpt_length;
if( strlen($output) > $excerpt_length ) {
return $output . '<p class="more-link"><a href="'. get_permalink($post->ID) . '"> Read More</p>';
} else {
return $output;
}
}
add_filter('the_excerpt', 'excerpt_read_more_link');
// custom excerpt length
function custom_excerpt_length( $length ) {
global $excerpt_length;
return $excerpt_length;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
以上是关于php 自定义摘录的主要内容,如果未能解决你的问题,请参考以下文章
php 自定义摘录
php 用于制作自定义摘录的功能
php WP博客自定义摘录
PHP 自定义wordpress摘录长度
php wordpress自定义中的多个摘录长度
php 为自动和自定义摘录添加更多链接。