WordPress 文章显示标题和摘要的方法

<?php the_content(); ?>//获取more标签前面的部分
<?php the_excerpt(); ?>//获取摘要有字数限制。这个字数是可以定义函数进行修改的

1
2
3
4
5
6
7
8
9
10
/**
 * Filter the except length to 20 characters.
 *
 * @param int $length Excerpt length.
 * @return int (Maybe) modified excerpt length.
 */
function wpdocs_custom_excerpt_length( $length ) {
    return 20;
}
add_filter( 'excerpt_length', 'wpdocs_custom_excerpt_length' );
 
调用这个函数后,在截取文章内容的后面会出现类似 “read more ”这样的文字如何修改?
 
1
2
3
4
5
6
7
8
9
10
/**
 * Filter the excerpt "read more" string.
 *
 * @param string $more "Read more" excerpt string.
 * @return string (Maybe) modified "read more" excerpt string.
 */
function wpdocs_excerpt_more( $more ) {
    return '[.....]';
}
add_filter( 'excerpt_more', 'wpdocs_excerpt_more' );

<?php the_title(); ?>获取标题

一般函数在对应模板的function.php 文件中,如果没有利用dw的全局搜索进行查找

etzzy

希望50年后它依然存在,让我感觉我一直在做一件稍微有点cool的事情

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

微信扫一扫

微信扫一扫

微信扫一扫,分享到朋友圈

WordPress 文章显示标题和摘要的方法
返回顶部

显示

忘记密码?

显示

显示

获取验证码

Close