Zatrzymaj WordPress przed kodowaniem atrybutów img szerokość i wysokość


16

Zastanawiam się, czy istnieje prosty sposób automatycznego zatrzymania WordPress na górze wyróżnionego atrybutu wysokości i szerokości obrazu, oprócz użycia wyrażenia regularnego ...

Ponieważ używam elastycznej siatki dla mojego projektu (kto nie jest!), Powoduje to pewne problemy z obrazem.

Odpowiedzi:


7

Możesz uzyskać wyróżniony adres URL obrazu i ręcznie dodać go do treści, np .:

<?php 
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'thumbnail' ); 

if ($image) : ?>
    <img src="<?php echo $image[0]; ?>" alt="" />
<?php endif; ?> 

działa tylko w przypadku zakodowanych stron Wordpress, co jest bezużyteczne dla CMS.
S ..

Pamiętaj: ta metoda zapobiega responsywnym obrazom od wersji WP 4.4, ponieważ nie zawiera srcsetatrybutu.
Drivingralle,

13

Możesz usunąć atrybuty szerokości i wysokości, filtrując dane wyjściowe image_downsizefunkcji znalezionej na wp-includes/media.php. Aby to zrobić, napisz własną funkcję i uruchom ją za pomocą pliku functions.php swojego motywu lub jako wtyczki.

Przykład:

Usuń widthiheight atrybuty .

/**
 * This is a modification of image_downsize() function in wp-includes/media.php
 * we will remove all the width and height references, therefore the img tag 
 * will not add width and height attributes to the image sent to the editor.
 * 
 * @param bool false No height and width references.
 * @param int $id Attachment ID for image.
 * @param array|string $size Optional, default is 'medium'. Size of image, either array or string.
 * @return bool|array False on failure, array on success.
 */
function myprefix_image_downsize( $value = false, $id, $size ) {
    if ( !wp_attachment_is_image($id) )
        return false;

    $img_url = wp_get_attachment_url($id);
    $is_intermediate = false;
    $img_url_basename = wp_basename($img_url);

    // try for a new style intermediate size
    if ( $intermediate = image_get_intermediate_size($id, $size) ) {
        $img_url = str_replace($img_url_basename, $intermediate['file'], $img_url);
        $is_intermediate = true;
    }
    elseif ( $size == 'thumbnail' ) {
        // Fall back to the old thumbnail
        if ( ($thumb_file = wp_get_attachment_thumb_file($id)) && $info = getimagesize($thumb_file) ) {
            $img_url = str_replace($img_url_basename, wp_basename($thumb_file), $img_url);
            $is_intermediate = true;
        }
    }

    // We have the actual image size, but might need to further constrain it if content_width is narrower
    if ( $img_url) {
        return array( $img_url, 0, 0, $is_intermediate );
    }
    return false;
}

Dołącz nową funkcję do image_downsizehaka:

/* Remove the height and width refernces from the image_downsize function.
 * We have added a new param, so the priority is 1, as always, and the new 
 * params are 3.
 */
add_filter( 'image_downsize', 'myprefix_image_downsize', 1, 3 );

Nie zapomnij również poprawnie skalować obrazów w swoim CSS:

/* Image sizes and alignments */
.entry-content img,
.comment-content img,
.widget img {
    max-width: 97.5%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"] {
    height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full {
    max-width: 97.5%;
    width: auto; /* Prevent stretching of full-size images with height and width attributes in IE8 */
}

Mam nadzieję, że to ci pomoże.

Twoje zdrowie,


Usuwa to srcset, sizesi inne czułe obraz atrybuty niestety. :( To jest mój obecny sollution, który odbudowuje atrybuty z powrotem: gist.github.com/cibulka/8e2bf16b0f55779af590472ae1bf9239
Petr Cibulka

10

Możesz użyć post_thumbnail_htmlfiltru, aby usunąć atrybut:

function remove_img_attr ($html) {
    return preg_replace('/(width|height)="\d+"\s/', "", $html);
}

add_filter( 'post_thumbnail_html', 'remove_img_attr' );

Umieść to w swoim functions.phppliku


Nadal działa jak urok.
Rahul

2

Możesz zastąpić wbudowane style / atrybuty za pomocą !important:

.wp-post-image {
    width: auto !important; /* or probably 100% in case of a grid */
    height: auto !important; 
}

To nie jest najczystsze rozwiązanie, ale rozwiązuje problem.


Z jakiegoś powodu klasa wp-post-imagenie została uwzględniona w moich obrazach. Zamiast tego miałem coś takiego wp-image-26. Musiałem użyć innego selektora, ale pomysł zadziałał.
Molo

2

Najlepszym rozwiązaniem jest umieszczenie jquery w stopce

jQuery(document).ready(function ($) {
    jQuery('img').removeAttr('width').removeAttr('height');
});

Jakieś wyjaśnienie, dlaczego jest to „najlepsze” rozwiązanie?
Kit Johnson

1
ponieważ czasami „add_filter” nie działa tam, gdzie chcesz, dlatego powiedziałem
Asad Ali,

0

Rozwiązanie CSS:

img[class*="align"], img[class*="wp-image-"] {
    width: auto;
    height: auto;
}

Dzięki temu responsywne obrazy działają tak, jak powinny, tymczasem zachowujesz atrybuty szerokości i wysokości w elemencie img, co prawdopodobnie jest lepsze w przypadku starszych przeglądarek, wydajności i / lub przekazywania walidatorów HTML.

Rozwiązanie PHP:

Zapobiegnie to dodawaniu atrybutów szerokości / wysokości do nowo dodanych mediów w edytorze WP (poprzez „Dodaj media”). Do Twojej wiadomości, może to również wpłynąć na podpisy zdjęć!

function remove_widthHeight_attribute( $html ) {
   $html = preg_replace( '/(width|height)="\d*"\s/', "", $html );
   return $html;
}

add_filter( 'post_thumbnail_html', 'remove_widthHeight_attribute', 10 );
add_filter( 'image_send_to_editor', 'remove_widthHeight_attribute', 10 );
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.