Skip to content

Instantly share code, notes, and snippets.

@rahularyan
Created August 14, 2017 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rahularyan/17f013718e30a99322357f9084761d89 to your computer and use it in GitHub Desktop.
Save rahularyan/17f013718e30a99322357f9084761d89 to your computer and use it in GitHub Desktop.
<?php
/**
* Allow adding post catgeory to question CPT.
*/
function my_ap_category_taxonomy_to_question() {
register_taxonomy_for_object_type( 'category', 'question' );
}
add_action( 'init', 'my_ap_category_taxonomy_to_question' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment