About Category
I just link my category wordpress with Anspress with this code :
<?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‘ );
But when I click in category order I can’t found wordpress category (look screenshoot) :
And when someone ask question I wan’t to put the question in good category here but in AnsPress Tools I can’t find the option :
Regards,
Noé
Good Afternoon, No I link category WordPress to anspress category with this code : <?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‘ );