Last active
July 7, 2017 19:44
-
-
Save pndparade/7b112d60f2fb5f16f3162f05aa62ddc5 to your computer and use it in GitHub Desktop.
Set image size for gallery items in wordpress
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
| _ |
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
| function custom_size_gallery($attr) { | |
| // Change size here | |
| $attr['size'] = 'gallery'; | |
| return gallery_shortcode($attr); | |
| } | |
| remove_shortcode('gallery'); | |
| add_shortcode('gallery', 'custom_size_gallery'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment