Answers for "Same Taxonomy Add Multiple Post Type"

0

Same Taxonomy Add Multiple Post Type

$articles_in_post_type = get_posts( array(
    'fields' => 'ids',
    'post_type' => 'post',
    'posts_per_page' => -1,
));
$tags = wp_get_object_terms( $articles_in_post_type, 'post_tag', array('ids') );
Posted by: Guest on May-08-2021

Code answers related to "Same Taxonomy Add Multiple Post Type"

Browse Popular Code Answers by Language