排序
WordPress主题自动给图片添加Alt标签
/** 自动给图片添加Alt标签 */ function image_alt_tag($content){ global $post;preg_match_all('/<img (.*?)\/>/', $content, $images); if(!is_null($images)) {foreach...
图片自适应浏览器大小
<center><img src='https://xxx.com/banner.jpg' class='img-responsive' alt='TOP'></a></center></br> 通过添加 img-responsive class 可以让 Bootstrap 3 中...
修复人人商城更新至3.0.X后,分销商推广二维码不能生成。
官方同步更新3.0.3后,突然发现分销商的推广二维码不能用了,其他的二维码正常,估计是逻辑出问题了。 经过排查addons\ewei_shopv2\plugin\commission\core\mobile\qrcode.php这个文件有些异常...
获取 XiunoBBS 文章中第一张图片作为标题缩放图
<?php $pattern='/<[img|IMG].*?src=[\'|\'](.*?(?:[\.gif|\.jpg|\.png]))[\'|\'].*?[\/]?>/'; $content = $_thread['message']; //文章内容 preg_match_all($pattern,$content,$match...