hacer que los subtítulos de las imágenes de Wordpress respondan


10

Esta página web contiene imágenes insertadas por Wordpress. El código utilizado para insertar la primera imagen es:

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

Esta imagen está controlada por CSS:

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

Quiero hacer que esta imagen responda. He insertado el CSS:

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

Sin embargo, el título DIV.wp permanece en 604 px, como se especifica dentro de la publicación de Wordpress. Intenté especificar esto como un porcentaje (97.41935483%) pero Wordpress lo reinterpretó como 104px.

El CSS en línea anula el CSS que inserto en la hoja de estilo.

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

¿Alguna idea sobre cómo puedo hacer que el .wp-caption responda?

Respuestas:


11

Vas a querer usar:

@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

Otra posibilidad es cambiar la salida del shortcode para que el ancho ya no esté codificado. Modificar el ejemplo del Codex para que no tenga ancho:

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

Aquí hay una solución mucho más simple y limpia:

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

add_filter('img_caption_shortcode_width', 'my_img_caption_shortcode_width', 10, 3);
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.