该功能适合那些壁纸博客站,非常实用的一个小功能,显示文章内图片的数量,实现起来也非常的简单,有2种方法。
方法一
在主题function.php
里添加代码如下(joe主题放在core/core.php
里):
function imgNum($content){
$output = preg_match_all('#<img(.*?) src="([^"]*/)?(([^"/]*)\.[^"]*)"(.*?)>#', $content,$s);
$cnt = count( $s[1] );
return $cnt;
}
调用方法:
<?php echo ''.imgNum($this->content).'' ; ?>
- 适用于图片型主题.仅计算文章内使用的img标签数量.
- 应用环境为:文章列表
方法二
在主题function.php
里添加代码如下(joe主题放在core/core.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).'' ; ?>
评论 (0)