Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /** Show Custom Taxonomy in Post Meta */
- function show_custom_taxonomy() {
- $term_list = wp_get_post_terms( get_the_ID(), 'ubicaciones' );
- // var_dump($term_list); /* Check Term List */
- // var_dump(get_taxonomies()); /* Check Taxonomy List */
- if ( ! empty( $term_list ) ) {
- echo '<a href="' . get_term_link( $term_list[0] ) . '">' . $term_list[0]->name . '</a>';
- }
- }
- add_action( 'jnews_render_after_meta_left', 'show_custom_taxonomy' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement