Skip to content

Instantly share code, notes, and snippets.

@anoopranawat
Created February 19, 2018 10:53
Show Gist options
  • Save anoopranawat/94d8098896a7b4e4ef43cf2ca53c4137 to your computer and use it in GitHub Desktop.
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
<?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