<?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的全局搜索进行查找