In the output add_filter('the_content','attachmentGalleryHook',10); // shortcode setup function attachmentgallery_shortcode($atts){ // get settings extract(shortcode_atts(array( 'filetypes' => '.pdf' ), $atts)); return ''; } add_shortcode('attachmentgallery', 'attachmentgallery_shortcode'); ?>