判断一个页面中是否有图片主要用于我们下一步可以调用这张图片作为缩略图,判断后添加一些特性等等。
在functions.php添加代码
/** *判断文章中是否有图片 */ function is_has_image(){ if ( is_single () || is_page()) { global $post; if( has_post_thumbnail() ) return true; $content = $post->post_content; preg_match_all('/<img.*?(?: |\\t|\\r|\\n)?src=[\'"]?(.+?)[\'"]?(?:(?: |\\t|\\r|\\n)+.*?)?>/sim', $content, $strResult, PREG_PATTERN_ORDER); if(!empty($strResult[1])) return true; return false; } }
函数调用
<?php if( is_has_image() ) :?> ......//功能代码 <?php endif;?>