WordPress代码:文章列表增加文章内图片数量展示

来自:闲鱼博客
时间:2018-09-27
阅读:

部署代码

将以下代码添加到主题的functions.php里,代码来自君子不器。

/** 
 * 文章标题:WordPress纯代码:为WordPress文章列表增加文章内图片数量展示 
 * 文章作者:君子不器
 */  
function junzibuqi_post_images_number(){  
    global $post;  
    $content = $post->post_content;    
    preg_match_all('/<img.*?(?: |\t|\r|\n)?src=['"]?(.+?)['"]?(?:(?: |\t|\r|\n)+.*?)?>/sim', $content, $strResult, PREG_PATTERN_ORDER);    
    return count($strResult[1]);    
}

代码展示

将以下代码添加到你需要展示的地方,部分样式可自行修改美化。

// 直接输出图片数量  
<?php echo '共有' . junzibuqi_post_images_number() . '张图片'; ?>

使用效果

文章列表增加文章内图片数量展示
返回顶部
顶部