Created
February 19, 2018 10:53
-
-
Save anoopranawat/94d8098896a7b4e4ef43cf2ca53c4137 to your computer and use it in GitHub Desktop.
Make WP Featured Content and Slider Pro post type publically true 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 'WP Featured Content and Slider Pro' Post agrs */ | |
function wpos_fcasp_modify_post_args( $post_args ) { | |
$post_args['public'] = true; | |
$post_args['rewrite'] = true; | |
return $post_args; | |
} | |
add_filter( 'wp_fcasp_post_type_args', 'wpos_fcasp_modify_post_args' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment