WordPress 列表调用文章所有图片及数量显示
更新时间:2018-10-06 分类:设计主题 浏览量:2644
将下面的函数加入主题模板 functions.php 文件中
WordPress 获取文章中的图片个数函数
/*
* 获取文章中的图片个数 (使用在文章列表主循环中、或文章页中)
*/
if( !function_exists('get_post_images_number') ){
function get_post_images_number(){
global $post;
$content = $post->post_content;
preg_match_all('/<img.*?(?: |\\t|\\r|\\n)?src=[\'"]?(.+?)[\'"]?(?:(?: |\\t|\\r|\\n)+.*?)?>/sim', $content, $result, PREG_PATTERN_ORDER);
return count($result[1]);
}
}
调用方法:<?php echo get_post_images_number().'张图片' ?>
WordPress 获取文章内所有图片
源码下载:点击这里
调用方法:<?php echo hui_get_thumbnail(false,true);?>
出处:爱找主题