Custom taxonomies making WP very slow – Way to fix?

I’ve set up three custom taxonomies within my theme for attachment post types within WordPress 3.5.1. One taxonomy is non-hierarchical (i.e. tags) and has about 800 terms in it. (I’m using WP to build a quick & dirty stock photo site, and these taxonomy terms are akin to photo keywords. Yes, one could debate whether … Read more

Get image of latest post from taxonomies/categories

I have a custom post type “Artworks” with a custom taxonomy “Artists”. I have a page where I list all the entries from the “Artists” taxonomy (Artist 1, Artist 2, Artist 3, etc.). How can I get the picture from the latest post in each category (Artist 1, Artist 2, etc.)? That’s how I list … Read more

Paginated Taxonomy Term Archive including one post per term

I have a custom query which gets all the custom taxonomies for the custom post type and displays the latest post in each. At the moment it pulls in all the taxonomies. Is there a way I can limit the number of taxonomies displayed to a set number per page and paginate them? // Set … Read more

Taxonomy , subtaxonomy,child taxonomy of a product woocommerce

Hi i need to get the main taxonomy and sub taxonomy of a product in woocommerce . i know how to get taxonomy details .123 is product id . $terms = get_the_terms(123, ‘product_cat’); I know how to get taxonomy name also echo $terms[0]->name But my need is: Nokia 3110 is my mobile . So it … Read more