Skip to content

Instantly share code, notes, and snippets.

@JeppeSigaard
Last active March 30, 2016 14:59
Show Gist options
  • Save JeppeSigaard/7049cbb52b35082be18c369e05984d36 to your computer and use it in GitHub Desktop.
Save JeppeSigaard/7049cbb52b35082be18c369e05984d36 to your computer and use it in GitHub Desktop.
<?php
add_image_size('alt-featured-size',752,350,true); // eller hvilke dimensioner du nu ønsker
add_filter('post_thumbnail_html',function($html, $post_id, $post_thumbnail_id, $size, $attr){
if ( is_single() || is_singular() || is_page() ){
$html = wp_get_attachment_image( $post_thumbnail_id, 'alt-featured-size', false, $attr );
}
return $html;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment