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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 显示具有自定义摘录长度的帖子和自定义在WordPress中阅读更多文本相关的知识,希望对你有一定的参考价值。

<?php 
//showing welcome post (post id =1)
// retrieve one post with an ID of 5
query_posts( 'p=1' );
function new_excerpt_length($length) {
return 28;
}
add_filter('excerpt_length', 'new_excerpt_length');
function new_excerpt_more($more) {
global $post;
return '<a href="'. get_permalink($post->ID) . '"> <br />read more....</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');

// set $more to 0 in order to only get the first part of the post
global $more;
$more = 0;

// the Loop
while (have_posts()) : the_post();
the_excerpt();
endwhile;
?>

以上是关于PHP 显示具有自定义摘录长度的帖子和自定义在WordPress中阅读更多文本的主要内容,如果未能解决你的问题,请参考以下文章

php 为自动和自定义摘录添加更多链接。

未找到具有自定义分页 404 的自定义分类和自定义帖子类型

PHP 带有自定义帖子类型和自定义分类的WordPress图库页面

PHP Wordpress:显示自定义长度的帖子标题

php 显示具有自定义帖子UI类型的帖子

在自定义帖子循环中显示自定义类别