I’m sorry if this question was answered here, but I couldn’t find it.
Is possible to change the HTML output of shortcode (without plugins)?
I would like to show the thumbnails as another appearance. Is this possible?
Thanks!
Leave a Reply
You must be logged in to post a comment.
The source for the gallery shortcode is in
wp-includes/media.php
. There are a couple of hooks in there that might work for you. Without knowing exactly what you want to do, it is impossible to be more specific.If that doesn’t work then you can remove the shortcode:
And add another gallery shortcode with the alterations you want. Just copy the function to
functions.php
or to a plugin file, rename it, edit it, and add it back withadd_shortcode('gallery', 'whatever_you_named_your_function');