Displaying a combination of Galleries
The built in shortcode doesn’t support that out of the box. However, it’s pretty easy to roll your own “multi-gallery” shortcode like so: <?php add_action( ‘init’, ‘wpse36779_add_shortcode’ ); /** * Adds the shortcode * * @ uses add_shortcode */ function wpse36779_add_shortcode() { add_shortcode( ‘multigallery’, ‘wpse36779_shortcode_cb’ ); } /** * The shortcode callback function * * … Read more