web-dev-qa-db-ja.com

wp-caption divからインラインスタイルを削除する

CSSで簡単に上書きされるため、WordPressの画像ではインラインの幅と高さの属性が大きな問題になることはありませんでした。

私が抱えている問題は、キャプション付きの画像はすべて 'attachment _(' attachmentnumber ')というIDと' wp-caption 'のクラスにラップされていて、インラインCSSのwidthプロパティとheightプロパティに与えられていることです。これはお尻の大きな痛みですので、可能であれば、私はこのdivのインラインスタイルを削除したいと思います。

12
andy

ソースコードで説明されているように、きれいなPHPの方法でインラインの幅を削除するには、フィルタを使用することができます。 https://core.trac.wordpress.org/browser/trunk/src/wp-includes/media .php#L1587

ゼロ(またはfalse)を返すとそれが削除されます。

add_filter( 'img_caption_shortcode_width', '__return_false' );
6

このようにインラインスタイルを "!important"で上書きすることができます。

width: 100px !important;

あなたがPHP修正が欲しいなら、これを見てください: http://troychaplin.ca/2012/06/updated-function-fix-inline-style-that-added-image-caption- wordpress-3-4/

add_shortcode('wp_caption', 'fixed_img_caption_shortcode');
add_shortcode('caption', 'fixed_img_caption_shortcode');
function fixed_img_caption_shortcode($attr, $content = null) {
    if ( ! isset( $attr['caption'] ) ) {
        if ( preg_match( '#((?:<a [^>]+>\s*)?<img [^>]+>(?:\s*</a>)?)(.*)#is', $content, $matches ) ) {
        $content = $matches[1];
        $attr['caption'] = trim( $matches[2] );
        }
    }

    $output = apply_filters('img_caption_shortcode', '', $attr, $content);
    if ( $output != '' )
    return $output;

    extract(shortcode_atts(array(
        'id' => '',
        'align' => 'alignnone',
        'width' => '',
        'caption' => ''
    ), $attr));

    if ( 1 > (int) $width || empty($caption) )
    return $content;

    if ( $id ) $id = 'id="' . esc_attr($id) . '" ';

    return '<div ' . $id . 'class="wp-caption ' . esc_attr($align) . '" style="width: ' . $width . 'px">' . do_shortcode( $content ) . '<p>' . $caption . '</p></div>';
}

またはjavascript/JQuery:

$(".wp-caption").removeAttr('style');
4
Kim