Last active
August 29, 2015 13:58
-
-
Save emaildano/10201643 to your computer and use it in GitHub Desktop.
List custom taxonomies without links.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$terms = get_the_term_list( $post->ID, 'project status' ); | |
echo $terms = strip_tags( $terms ); | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$args = array('number' => '1',); | |
$terms = get_terms('project status', $args ); | |
foreach( $terms as $term ){ | |
echo $term->name ; | |
} ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment