Skip to content

Instantly share code, notes, and snippets.

@gdarko
Created February 18, 2022 21:50
Show Gist options
  • Save gdarko/b00c2614e88ae675b75acd8b96c61c78 to your computer and use it in GitHub Desktop.
Save gdarko/b00c2614e88ae675b75acd8b96c61c78 to your computer and use it in GitHub Desktop.
Changes the default vimeo video page slug on WP Vimeo Videos plugin
<?php
/**
* Changes the default vimeo video page slug.
* @return string
*/
function dgv_post_type_slug() {
return 'videos';
}
add_filter('dgv_post_type_slug', 'dgv_post_type_slug');
@alexnl
Copy link

alexnl commented Feb 18, 2022

@gdarko worked like a charm, thanks!

@gdarko
Copy link
Author

gdarko commented Feb 18, 2022

@alexnl - perfect. great to hear that.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment