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


13

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

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


1
私はこれに対する解決策を探しましたが、Joots Kiensの実装の方が優れていることがわかりました。joostkiens.com/improving-wp-caption-shortcodeの実装に関する情報。Githubのソース:gist.github.com/JoostKiens/4477366
swirv

回答:



4

インラインスタイルは、次のように「!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');

!importantは常にサポートされており、その部分は編集可能です。また、PHPソリューションを使用して回答に含めることができますか?troychaplin.caがダウンした場合、現時点では、この答えは無駄になり
トム・J Nowell
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.