वर्डप्रेस छवि कैप्शन को उत्तरदायी बनाएं


10

इस वेबपेज में वर्डप्रेस द्वारा डाली गई छवियां हैं। पहला चित्र डालने के लिए उपयोग किया जाने वाला कोड है:

[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]

यह चित्र CSS द्वारा नियंत्रित है:

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

मैं इस छवि को उत्तरदायी बनाना चाहता हूं। मैंने CSS डाला है:

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

हालाँकि, DIV.wp-caption 604px पर बना रहता है, जैसा कि वर्डप्रेस पोस्ट के अंदर निर्दिष्ट है। मैंने इसे एक प्रतिशत (97.41935483%) के रूप में निर्दिष्ट करने की कोशिश की है, लेकिन वर्डप्रेस ने इसे 104px के रूप में फिर से व्याख्या किया।

इनलाइन सीएसएस स्टाइलशीट में सम्मिलित सीएसएस I को ओवरराइड कर रहा है।

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

मैं .wp-caption को उत्तरदायी कैसे बना सकता हूं, इस पर कोई विचार?

जवाबों:


11

आप उपयोग करना चाहते हैं:

@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

एक और संभावना शोर्ट आउटपुट को बदलने की है ताकि चौड़ाई अब हार्ड-कोडित न हो। कोई चौड़ाई नहीं है कोडेक्स उदाहरण को संशोधित करना:

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

यहाँ एक बहुत सरल और क्लीनर समाधान है:

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

add_filter('img_caption_shortcode_width', 'my_img_caption_shortcode_width', 10, 3);
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.