您的位置:首页 > 教程笔记 > 综合教程

WordPress判断文章中是否有图片并调用

2023-11-16 11:00:18 综合教程 132

WordPress分类页如果想实现图文列表,可以通过Wordpress判断文章中是否有图片,如果有图片就调用出来,实现图文综合的效果。

首先在functions.里添加以下的函数代码:

/***判断文章中是否有图片*/function is_has_image(){    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;}

然后使用以下的代码在模板里进行判断文章里是否有图片并调用:

<? if( is_has_image() ) {?><? }?>

相关推荐