Skip to content

Instantly share code, notes, and snippets.

@techies23
Created December 8, 2020 13:29
Show Gist options
  • Save techies23/377f019396c3eaf0903f193a9c0b5251 to your computer and use it in GitHub Desktop.
Save techies23/377f019396c3eaf0903f193a9c0b5251 to your computer and use it in GitHub Desktop.
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