Created
August 28, 2014 21:28
-
-
Save RCowles/9f0470fb887d571f011a to your computer and use it in GitHub Desktop.
Add Publicize support to an existing CPT
This file contains 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
add_action('init', 'rsc_custom_init'); | |
function rsc_custom_init() { | |
add_post_type_support( 'your-custom-post-type-name', 'publicize' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment