Return to Snippet

Revision: 39749
at January 20, 2011 10:10 by ToddSmithSalter


Initial Code
// get name of manufacturer of this post
// replace 'manufacturer' with the id name of your custom taxomony
$manufacturer = wp_get_post_terms($post->ID, 'manufacturer'); 
$manufacturer_name = $manufacturer[0]->name;

// use this to display the name
echo $manufacturer_name;

Initial URL
www.centerdrive.ca

Initial Description
Use this to get the name of the custom taxonomy. Note that this only returns the name of the first selected item, but since this returns an array, use a foreach loop to find all names.

Initial Title
Get the name of the selected custom taxonomy

Initial Tags
wordpress

Initial Language
PHP