Answers for "include custom post type posts in custom taxonomy page"

PHP
0

get custom post type taxonomy value

<?php $terms = wp_get_post_terms( $query->post->ID, array( 'country', 'subject' ) ); ?>
<?php foreach ( $terms as $term ) : ?>
<p><?php echo $term->taxonomy; ?>: <?php echo $term->name; ?></p>
<?php endforeach; ?>
Posted by: Guest on September-30-2021

Code answers related to "include custom post type posts in custom taxonomy page"

Browse Popular Code Answers by Language