- 注册时间
- 2012-9-20
- 最后登录
- 2024-11-14
- 阅读权限
- 200
- 积分
- 5477
- 精华
- 0
- 帖子
- 1152
|
附件太多,想设置下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函数输出文章时进行过滤替换
|
|