Skip to content

Instantly share code, notes, and snippets.

@techies23
Created December 8, 2020 13:29
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Change permalink "zoom-meetings" to something custom. For https://wordpress.org/plugins/video-conferencing-with-zoom-api/ plugin.
//NOTE: After adding below code - Goto wp-admin > Settings > Permalinks and hit save button to apply changes.
add_filter('vczapi_cpt_slug', 'vczapi_change_slug');
function vczapi_change_slug() {
return 'custom-slug';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment