web-dev-qa-db-ja.com

ギャラリーのリンクと画像からtitle属性を削除する方法

[gallery]ショートコードの出力内からtitle属性を削除したい。

 <a href="url" title="bobby"> 
 <img src = "url" title = "ボビー" />
 </a> 

する必要があります:

 <a href="url"> 
 <img src = "url" /> 
 </a> 

これは wp_get_attachment_link 関数と関係があると感じています。

3
bigandy

私は解決策を見つけました:

// Remove &lt;img&gt; title attribute in [gallery]
// http://wordpress.org/support/topic/wp_get_attachment_image_attributes-filter-not-working
function remove_img_title($atts) {
    unset($atts['title']);
    return $atts;
}
add_filter('wp_get_attachment_image_attributes','remove_img_title', 10, 4);

// remove title attribute from &lt;a&gt; title attribute in [gallery]
// modified from this post : http://oikos.org.uk/2011/09/tech-notes-using-resized-images-in-wordpress-galleries-and-lightboxes/
function ah_get_attachment_link_filter( $content ) {       

        $new_content = preg_replace('/title=\'(.*?)\'/', '', $content );
        return $new_content;
}
add_filter('wp_get_attachment_link', 'ah_get_attachment_link_filter', 10, 4);
1
bigandy