Title: Set &#8220;WordPress Default&#8221; as default &#8220;Insert&#8221; value for video
Last modified: July 11, 2023

---

# Set “WordPress Default” as default “Insert” value for video

 *  [janvitos](https://wordpress.org/support/users/janvitos/)
 * (@janvitos)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/set-wordpress-default-as-default-insert-value-for-video/)
 * Hi,
 * When editing a video, under “Video Embed Options”, the current default “Insert”
   value is “Single Video”. I would like this value to be “WordPress Default” by
   default since I prefer using the default WordPress shortcote.
 * Is there any way to do this? If not, could you add this option to a future version
   of the plugin? I believe it would be really helpful.
 * Thanks!

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

 *  Thread Starter [janvitos](https://wordpress.org/support/users/janvitos/)
 * (@janvitos)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/set-wordpress-default-as-default-insert-value-for-video/#post-16886801)
 * I found the line of code that handles this. It is line 321 and 322 in videopack-
   admin.php:
 *     ```wp-block-code
       $meta_key_array = array(
           'embed' => 'Single Video',
       ```
   
 * We can replace this with the following code to add a filter and choose the value
   we desire:
 *     ```wp-block-code
       $embed_value = apply_filters( 'kgvid_default_embed_value', 'Single Video' );
       $meta_key_array = array(
           'embed' => $embed_value,
       ```
   
 * Or you could add an option in the plugin settings to make it more convenient 
   for less technical users.
 * Cheers.
    -  This reply was modified 2 years, 11 months ago by [janvitos](https://wordpress.org/support/users/janvitos/).
    -  This reply was modified 2 years, 11 months ago by [janvitos](https://wordpress.org/support/users/janvitos/).
 *  Plugin Author [Kyle Gilman](https://wordpress.org/support/users/kylegilman/)
 * (@kylegilman)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/set-wordpress-default-as-default-insert-value-for-video/#post-16887224)
 * Oh wow. It’s probably been almost a decade since I checked into how WordPress
   usually inserts videos and I can see why you’d prefer the current system. In 
   the old days my plugin was always an improvement. I’ll work on adding an option
   to the next release.
 *  Thread Starter [janvitos](https://wordpress.org/support/users/janvitos/)
 * (@janvitos)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/set-wordpress-default-as-default-insert-value-for-video/#post-16887257)
 * Please don’t take my request as a dislike of your plugin. I find it very useful
   for other things like video thumbnail generation and customization. I just prefer
   to keep things as default as possible with my WordPress install.
   Thanks for this
   great plugin! It really is one of a kind.
 *  Thread Starter [janvitos](https://wordpress.org/support/users/janvitos/)
 * (@janvitos)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/set-wordpress-default-as-default-insert-value-for-video/#post-17045524)
 * Hi,
 * I noticed you released a new version of the plugin. Did you have a chance to 
   add this option to it? I don’t see it in the release notes.
 * If not, it’s no problem, I’ll update and add my code back for the time being.
 * Thanks!
 *  Plugin Author [Kyle Gilman](https://wordpress.org/support/users/kylegilman/)
 * (@kylegilman)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/set-wordpress-default-as-default-insert-value-for-video/#post-17045972)
 * I did not! I forgot all about this. I’ve added an [issue on GitHub](https://github.com/kylegilman/video-embed-thumbnail-generator/issues/530)
   so I don’t forget in the next release.
 *  Thread Starter [janvitos](https://wordpress.org/support/users/janvitos/)
 * (@janvitos)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/set-wordpress-default-as-default-insert-value-for-video/#post-17045999)
 * I didn’t know you had a Github. Would’ve posted there instead 🙂

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

The topic ‘Set “WordPress Default” as default “Insert” value for video’ is closed
to new replies.

 * ![](https://ps.w.org/video-embed-thumbnail-generator/assets/icon.svg?rev=2965979)
 * [Videopack](https://wordpress.org/plugins/video-embed-thumbnail-generator/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/video-embed-thumbnail-generator/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/video-embed-thumbnail-generator/)
 * [Active Topics](https://wordpress.org/support/plugin/video-embed-thumbnail-generator/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/video-embed-thumbnail-generator/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/video-embed-thumbnail-generator/reviews/)

 * 6 replies
 * 2 participants
 * Last reply from: [janvitos](https://wordpress.org/support/users/janvitos/)
 * Last activity: [2 years, 9 months ago](https://wordpress.org/support/topic/set-wordpress-default-as-default-insert-value-for-video/#post-17045999)
 * Status: not resolved