主题目录functions.php文件中添加以下代码:默认显示文章标题和网站标题// /** <a target= _blank href= https://www.8hi.com.cn
主题目录functions.php文件中添加以下代码:
默认显示文章标题和网站标题
// /** <a target="_blank" href="https://www.8hi.com.cn" title="图片自动添加alt和title">图片自动添加alt和title</a> */ function image_alt_title($content){ global $post;preg_match_all('/<img (.*?)\/>/', $content, $images); if(!is_null($images)) {foreach($images[1] as $index => $value) { $new_img = str_replace('<img', '<img alt="'.get_the_title().'-'.get_bloginfo('name').'"'.'title="'.get_the_title().'-'.get_bloginfo('name').'"', $images[0][$index]); $content = str_replace($images[0][$index], $new_img, $content);}} return $content; } add_filter('the_content', 'image_alt_title', 99999);
保存文件后刷新一下,若是开了缓存,记得清理一下缓存即可。
暂无管理员
粉丝
0
关注
0
收藏
0