Insert [gallery] shortcode on form
Author | Posts |
---|---|
April 27, 2013 at 12:53 am 2923 | |
Gaby | I would like to insert the gallery shortcode to show images of post. The problem is that I need insert the shortcode automatically, without user typing. Thanks |
April 27, 2013 at 7:16 am 2928 | |
Tareq Hasan | Inserting this snippet to your theme functions.php will append the gallery shortcode to your posts automatically when creating a new post. [php] return $postarr; add_filter( ‘wpuf_add_post_args’, ‘wpufe_append_gallery’ ); |
April 29, 2013 at 12:41 pm 2981 | |
ggsalas | Works perfect. Thanks |
June 24, 2013 at 3:41 pm 5156 | |
ggsalas | Can I insert the “gallery” shortcode ONLY on the posts with gallery format? Thanks |
June 24, 2013 at 7:56 pm 5170 | |
Tareq Hasan | The existing code can be modified like this: [php] return $postarr; add_filter( ‘wpuf_add_post_args’, ‘wpufe_append_gallery’, 10, 3 ); |
January 9, 2015 at 9:18 pm 33746 | |
Gaby | How would I put the images in to a slider? |