How to automatically populate a gallery with images attached to posts of one category?
In form of a shortcode to render a default WordPress shortcode including all attachments of the given categories: /** * Usage: [catgallery cat=”4,5″] * Attribute: array of category IDs */ add_shortcode(‘catgallery’, ‘wpse_70989_cat_gallery_shortcode’); function wpse_70989_cat_gallery_shortcode($atts) { // $return = ”; // DEBUG: enable for debugging $arr = array(); $cat_in = explode( ‘,’, $atts[‘cat’] ); $catposts = … Read more