Title: Embed automatic
Last modified: August 22, 2016

---

# Embed automatic

 *  Resolved [P3g4sus](https://wordpress.org/support/users/p3g4sus/)
 * (@p3g4sus)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/embed-automatic/)
 * Thank you for this plugin! top notch
 * Is there a way you could override the default gallery shortcode to run the plugin
   by default?
 * Would like to use this from now on for all my galleries, and dont want all the
   time to change the shortcode
 * [https://wordpress.org/plugins/gallery-slideshow/](https://wordpress.org/plugins/gallery-slideshow/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [jethin](https://wordpress.org/support/users/jethin/)
 * (@jethin)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/embed-automatic/#post-5754376)
 * Yes, inserting the following routing into your theme’s functions.php file should
   do the trick:
 *     ```
       remove_shortcode('gallery', 'gallery_shortcode');
       function gss_override_gallery($atts) {
       	$atts_string = '';
       	foreach($atts as $k => $v){
       		$atts_string .= ' ' . $k . '=' . $v;
       	}
       	$gallery_html = do_shortcode('[gss' . $atts_string . ']');
       	return $gallery_html;
       }
       add_shortcode('gallery', 'gss_override_gallery');
       ```
   
 * Let us know how you make out. Thanks.
 *  Plugin Author [jethin](https://wordpress.org/support/users/jethin/)
 * (@jethin)
 * [11 years ago](https://wordpress.org/support/topic/embed-automatic/#post-5754460)
 * Marking topic as resolved.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Embed automatic’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/gallery-slideshow.svg)
 * [Gallery Slideshow](https://wordpress.org/plugins/gallery-slideshow/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/gallery-slideshow/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/gallery-slideshow/)
 * [Active Topics](https://wordpress.org/support/plugin/gallery-slideshow/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/gallery-slideshow/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/gallery-slideshow/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [jethin](https://wordpress.org/support/users/jethin/)
 * Last activity: [11 years ago](https://wordpress.org/support/topic/embed-automatic/#post-5754460)
 * Status: resolved