admin 发表于 2013-5-12 00:52:47

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 as $index => $value)
{if(!preg_match('/alt=/', $value)){
$new_img = str_replace('<img', '<img alt="'.get_the_title().'"', $images[$index]);
$content = str_replace($images[$index], $new_img, $content);}}}
return $content;
}
add_filter('the_content', 'image_alt_tag', 99999);add_filter 那个就是在the_content函数输出文章时进行过滤替换


页: [1]
查看完整版本: wordpress 批量添加tag标签到图像alt|wordpress 如何批量添加tag标签到图像alt