Hello,
By default, WP-Property plugin has only two predefined taxonomies ‘Features’ and ‘Community’ features. But you could add ‘Categories’ or any other taxonomy by using WP-Property: Terms Add-on.
Regards.
Thread Starter
btees
(@btees)
Hi Maxim,
Thanks for that.
In the end I used:
/* Place your custom functions below */
//* Link properties to categories taxonomy
add_action( 'init', 'sk_add_category_taxonomy_to_properties' );
function sk_add_category_taxonomy_to_properties() {
register_taxonomy_for_object_type( 'category', 'property' );
}
to achieve this, it seems to suite my purposes here.
But that plugin looks pretty interesting, so I’ll definitely play around with it to see what I might achieve with it.