WordPress 图片alt自动使用标题

// 图片alt强制标题 function image_alt($c) { global $post; // …


// 图片alt强制标题
function image_alt($c) {
    global $post; // 全局量
    $title = $post->post_title; // 文章标题
    $s = array('/src="(.+?.(jpg|jepg|png|gif|bmp))"/i' => 'src="$1" alt="'.$title.'"');
    foreach($s as $p => $r){
    $c = preg_replace($p,$r,$c);
}
return $c;
}
add_filter( 'the_content', 'image_alt' );

代码来自:http://meiri.me/9047.html


发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据

More posts. You may also be interested in.