Ansprechen von Wordpress-Bildunterschriften


10

Diese Webseite enthält Bilder, die von Wordpress eingefügt wurden. Der Code zum Einfügen des ersten Bildes lautet:

[caption id="attachment_887" align="alignnone" width="604"]
    <a href="http://steven.doig.com.au/files/2013/06/Forest_Legacy_m.jpg">
        <img class="size-large wp-image-887" alt="a Forest Legacy group" src="http://steven.doig.com.au/files/2013/06/Forest_Legacy_m-1024x681.jpg" width="1024" height="681" />
    </a> a Forest Legacy group[/caption]

Dieses Bild wird von CSS gesteuert:

#content .wp-caption a img {
    width: 614px;
    height: auto;
}

Ich möchte dieses Bild reaktionsschnell machen. Ich habe das CSS eingefügt:

@media (max-width:988px) {
    #content .wp-caption a img {
        width: 99.03225806%; /* 614/620 */
        height: auto;
    }
}

Die DIV.wp-Beschriftung bleibt jedoch bei 604px, wie im Wordpress-Beitrag angegeben. Ich habe versucht, dies als Prozentsatz anzugeben (97,41935483%), aber Wordpress hat es als 104px neu interpretiert.

Das Inline-CSS überschreibt das CSS, das ich in das Stylesheet eingefügt habe.

<div id="attachment_887" class="wp-caption alignnone" style="width: 614px">

Irgendwelche Ideen, wie ich die .wp-Beschriftung reaktionsfähig machen kann?

Antworten:


11

Sie werden verwenden wollen:

@media (max-width: 988px){
  .wp-caption {
    /* Force the box to be 100% */
    width: 100% !important;
  }
  #content .wp-caption a img {
    /* Scale down if too big */
    max-width: 99.03225806%; /* 614/620 */
    height: auto;
  }
}

7

Eine andere Möglichkeit besteht darin, die Shortcode-Ausgabe so zu ändern, dass die Breite nicht mehr fest codiert ist. Ändern des Codex-Beispiels so, dass es keine Breite hat:

add_filter('img_caption_shortcode', 'my_img_caption_shortcode_filter',10,3);

/**
 * Filter to replace the [caption] shortcode text with HTML5 compliant code
 *
 * @return text HTML content describing embedded figure
 **/
function my_img_caption_shortcode_filter($val, $attr, $content = null)
{
    extract(shortcode_atts(array(
        'id'    => '',
        'align' => '',
        'width' => '',
        'caption' => ''
    ), $attr));

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

    $capid = '';
    if ( $id ) {
        $id = esc_attr($id);
        $capid = 'id="figcaption_'. $id . '" ';
        $id = 'id="' . $id . '" aria-labelledby="figcaption_' . $id . '" ';
    }

    return '<figure ' . $id . 'class="wp-caption ' . esc_attr($align) . '" >'
    . do_shortcode( $content ) . '<figcaption ' . $capid 
    . 'class="wp-caption-text">' . $caption . '</figcaption></figure>';
}

http://codex.wordpress.org/Function_Reference/add_filter#Example


2

Hier ist eine viel einfachere und sauberere Lösung:

function my_img_caption_shortcode_width($width, $atts, $content)
{
    return 0;
}

add_filter('img_caption_shortcode_width', 'my_img_caption_shortcode_width', 10, 3);
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.