Skip to content

Instantly share code, notes, and snippets.

@anoopranawat
Created March 19, 2018 06:15
Show Gist options
  • Save anoopranawat/ce157eceeec9fcb4b0cf7e37cc83eaf6 to your computer and use it in GitHub Desktop.
Save anoopranawat/ce157eceeec9fcb4b0cf7e37cc83eaf6 to your computer and use it in GitHub Desktop.
Make Video gallery and Player Pro post type publicly visible with permalink
<?php
/* Function to modify 'Video gallery and Player Pro' Post agrs */
function wpos_vgp_modify_post_args( $post_args ) {
$post_args['public'] = true;
$post_args['rewrite'] = true;
return $post_args;
}
add_filter( 'wp_vgp_post_type_args', 'wpos_vgp_modify_post_args' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment