Last active
December 17, 2016 05:19
-
-
Save SeanChDavis/000d748053f5461e5e13c4b09165ffdc to your computer and use it in GitHub Desktop.
Volatyl Display Thumbnails on Archives
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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