Skip to content

Instantly share code, notes, and snippets.

@tomharrigan
Created August 29, 2017 16:45
Show Gist options
  • Save tomharrigan/9573e02b0638830151276f268e7beecc to your computer and use it in GitHub Desktop.
Save tomharrigan/9573e02b0638830151276f268e7beecc to your computer and use it in GitHub Desktop.
Change the post type used for news functionality in VoiceWP
function my_voicewp_post_types( $post_types ) {
return array( 'my-custom-post-type' );
}
add_filter( 'voicewp_post_types', 'my_voicewp_post_types' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment