wordpress判断文章中是否有图片

在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;?>

发布日期:

所属分类: Wordpress 综合 标签:


没有相关文章!