Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Last active December 17, 2016 05:19
Show Gist options
  • Select an option

  • Save SeanChDavis/000d748053f5461e5e13c4b09165ffdc to your computer and use it in GitHub Desktop.

Select an option

Save SeanChDavis/000d748053f5461e5e13c4b09165ffdc to your computer and use it in GitHub Desktop.
Volatyl Display Thumbnails on Archives
<?php // DO NOT COPY THIS LINE
function vol_setup_thumb_dimensions() {
$width = get_option( 'thumbnail_size_w' );
$height = get_option( 'thumbnail_size_h' );
$crop = get_option( 'thumbnail_crop' ) ? true : false;
add_image_size( 'post-thumbnail', $width, $height, $crop );
}
add_action( 'after_setup_theme', 'vol_setup_thumb_dimensions', 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment