php 如果the_content包含图片,则隐藏特色图片

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 如果the_content包含图片,则隐藏特色图片相关的知识,希望对你有一定的参考价值。

<?php $content = $post->post_content;
    $searchimages = '~<img [^>]* />~';
     
    // Run preg_match_all to grab all the images and save the results in $pics
    preg_match_all( $searchimages, $content, $pics );
     
    // Check to see if we have at least 1 image
    $iNumberOfPics = count($pics[0]);
     
    if ( $iNumberOfPics > 0 ) {
         // Your post have one or more images.
    } else {
         the_post_thumbnail();
    }
?>

以上是关于php 如果the_content包含图片,则隐藏特色图片的主要内容,如果未能解决你的问题,请参考以下文章

php the_content()之前的缩略图

php the_content()之前的缩略图

PHP 通过单词限制WordPress the_content

Wordpress:single.php 不显示 the_content()

php 将Featherlight JS添加到WordPress发布the_content

php Jan Dembowski过滤the_content()以添加Pinterest按钮代码。