W pliku functions.php dodajemy poniższy kod i w miejsce nazwa_typu_wpisu wstawiamy nazwę naszego typu postów:
1 2 3 4 5 6 7 |
/** Add custom post type to taxonomies (tag) */ function wpa_cpt_tags( $query ) { if ( $query->is_tag() && $query->is_main_query() ) { $query->set( 'post_type', array( 'post', 'nazwa_typu_wpisu' ) ); } } add_action( 'pre_get_posts', 'wpa_cpt_tags' ); |
Tagi w widoku mogą być wyświetlone np. w ten sposób:
1 2 3 4 5 |
<?php if(get_the_tag_list()): ?> <div class="tags"> <?php the_tags('<span>'.__( 'Tags: ').'</span>' , ', ', '.'); ?> </div> <?php endif; ?> |