主机头
标题:
wordpress 批量添加tag标签到图像alt|wordpress 如何批量添加tag标签到图像alt
[打印本页]
作者:
admin
时间:
2013-5-12 00:52
标题:
wordpress 批量添加tag标签到图像alt|wordpress 如何批量添加tag标签到图像alt
附件太多,想设置下ALT,但是太多了。
如何批量呢??
添加到 functions.php
/** Auto-Generate ALT tag for images */
function image_alt_tag($content)
{global $post;preg_match_all('/<img (.*?)\/>/', $content, $images);
if(!is_null($images)) {foreach($images[1] as $index => $value)
{if(!preg_match('/alt=/', $value)){
$new_img = str_replace('<img', '<img alt="'.get_the_title().'"', $images[0][$index]);
$content = str_replace($images[0][$index], $new_img, $content);}}}
return $content;
}
add_filter('the_content', 'image_alt_tag', 99999);
复制代码
add_filter 那个就是在the_content函数输出文章时进行过滤替换
欢迎光临 主机头 (http://zhujitou.com/)
Powered by Discuz! X2.5