ทำให้คำอธิบายภาพของ Wordpress ตอบสนอง


10

เว็บเพจนี้มีรูปภาพที่แทรกโดย Wordpress รหัสที่ใช้ในการแทรกภาพแรกคือ:

[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 ตามที่ระบุไว้ในโพสต์ Wordpress ฉันได้ลองระบุนี่เป็นเปอร์เซ็นต์ (97.41935483%) แต่ Wordpress ตีความใหม่เป็น 104px

Inline CSS กำลังแทนที่ CSS ที่ฉันแทรกลงในสไตล์ชีท

<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

ความเป็นไปได้อีกอย่างหนึ่งคือการเปลี่ยนเอาต์พุตรหัสย่อเพื่อให้ความกว้างไม่ได้ถูกกำหนดรหัสฮาร์ดอีกต่อไป การแก้ไขตัวอย่าง Codex ให้ไม่มีความกว้าง:

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);
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.