paulogoode (September 21st, 2014)
<?php $cat_id = appthemes_get_custom_taxonomy( $post->ID, APP_TAX_CAT, 'term_id' ); ?> <?php echo $cat_id; ?>
<?php $cat_id = appthemes_get_custom_taxonomy( $post->ID, APP_TAX_CAT, 'term_id' ); ?> <?php echo $cat_id->name; ?>
<?php $term = $wp_query->queried_object; ?> <?php echo '<h1>'.$term->name.'</h1>'; ?> <?php echo '$wp_query->query_vars['taxonomy_name']'; ?> <?php echo $wp_query->queried_object->name; ?> <?php print_r(get_object_taxonomies('post')); ?> <?php foreach ( get_object_taxonomies( 'post' ) as $tax_name ) { echo $tax_name .'<br>'; } ?>
paulogoode (September 21st, 2014)
There are currently 1 users browsing this thread. (0 members and 1 guests)