Typecho 获取文章图片数量代码
在你的博客主题functions.php里面增加下面函数:
function imgNum($content){
$output = preg_match_all("/<img.<em>?src="(.</em>?)"<sup id="fnref-1"><a href="#fn-1" class="footnote-ref">1</a></sup>*>/i", $content,$matches);
$cnt = count( $matches[1] );
return $cnt;
}
在你想显示的地方调用方法:
<?php echo ''.imgNum($this->content).'' ; ?>
广告声明:文内含有的对外跳转链接(包括不限于超链接、二维码、口令等形式),用于传递更多信息,节省甄选时间,结果仅供参考,Typecho.Wiki所有文章均包含本声明。