Created
March 19, 2018 06:15
-
-
Save anoopranawat/ce157eceeec9fcb4b0cf7e37cc83eaf6 to your computer and use it in GitHub Desktop.
Make Video gallery and Player Pro post type publicly visible with permalink
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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