Viewing 1 to 10 of 10 items
Tag Archives: taxonomy

Renaming WordPress Custom Post Types and Taxonomies

Taken from this Stack Exchange Thread: http://wordpress.stackexchange.com/questions/1037/renaming-custom-post-types-and-taxonomies SQL query for renaming the posts: SQL query for renaming taxonomy: That should take care of all of the database areas. Just remember to match the new names in the code where the post types or taxonomies are registered. As far as I know, this is not handled in  Full Article…

0

WordPress – Custom Taxonomy Breadcrumbs

Taken from: http://www.free-php.net/780/wordpress-custom-taxonomy-breadcrumbs/ While developing a theme that uses custom taxonomies and custom post types, I ran across the need to include breadcrumb navigation to the custom taxonomies. After a couple of days of searching around and not finding any real solutions, I ended up creating my own function to do it. Simply copy this to  Full Article…

0

Breadcrumbs for Taxonomy Pages

Taken from Bill Ericson: http://www.billerickson.net/wordpress-taxonomy-breadcrumbs/ This post has been marked as old. The code might no longer work. Comments have been disabled as this is no longer maintained. Use the search on the right to find a newer tutorial. I’m working on a project right now that uses hierarchical taxonomies, and the client requested a breadcrumb along  Full Article…

0

Check If a Post has a Term from a specific Custom Taxonomy

See this page for the original source: http://alex.leonard.ie/2011/06/30/wordpress-check-if-post-is-in-custom-taxonomy/ As of WP 3.2 – there’s no core conditional function for checking whether a post belongs to a taxonomy term. A bit of searching around found this WordPress Support forum post by Justin Tadlock explaining how do check against a specific taxonomy. I’ve expanded this function a little bit  Full Article…

0

Get various taxonomy queries and information

Unfortunately (in my eyes)I haven’t found a way inside a post or page to query what taxonomies have beenused to apply terms. This for me would be a bit of a holy grail. Anyeway – these are the bits and pieces I have developed when trying to get various bits and pieces of information from  Full Article…

0