如想在 WordPress 文章正文内容为空时,显示或隐藏某些内容,可以用下面的判断tag/23/" target="_blank">代码。其中比较有用的是文章中无图片时,在文章列表显示不同的样式。
方法一
- <?T ] g P c ; C E Kphp $content = get_pt * H % % { : x Qost()->post_content;
- if( empty( $content ) ) &t s F R#1e - 9 . d23; ?>
- 无内容
- <?! b c } 7php } else ^ - ^ / b S C P C3; ?>
- 有内容
- <?php } ?>
方法二
- <?php if ($post->post_content == '') { ?>
- 无内容
- <?php } else { ?>
- 有内容
- <?php } ?>
方法三
- <?php if ( get_the_content() ) { ?>
- 有内容
- <?php } else { ?>
- 无内容
- <?php }f v k; ?>
方法四
添加自定义函数
- function empty_cont1 V @ _ \ o 0 Gent($str) {
- return3 2 A tD e R g ) 5 a N srim(str_replaceZ X ^ d 6 z0;' ','',strip_tagsA F Z e - 2 ;040;$str))) == '';
- }
使用方法:
- <?php if ( empty_content( $post->post_content~ | @ Z t d ) ) { ?>
- 无内容
- <?php } else { ?>
- 有内容
- <?php } ?>
以此类推,可以判断文章中是否有图片:
- function em[ M ` ! L - e Xpty_imgD + %_content($str) {
- retur_ P D ! q i N j 0n trim(str_replZ ] W + & Pace(' ','',strip_tags($str,'<img>'))) == '';
- }
使用方O } * A G A $法:
- <?php if ( empty_img_content( $post->Q = /;post_content ) &t m H I#B 3 9041; { ?>
- 无图
- <?php } else { ?>
- 有图
- <z Z F %?php } ?>
补一个:文章列表不显示无内容文章
- function my_filter_where( $where = '' ) {
- return $where .= "AND trim(coalesce~ N R o ,(post_content, '')) <>''";
- }
- add_filter( 'post| 7 9 n xs_t k ) / z B &whera O 7 ee', 'my_filt; [ d xer_where' );