Posts by Bruno Rodrigues • 36 points
1 post
-
2
votes3
answers1458
viewsA: Show post_types linked to a taxonomy
Fast way: Assuming your taxonomy is "people" and the person you want to search for is "bob": $args = array( 'post_type' => 'post', 'pessoas' => 'bob' ); $query = new WP_Query( $args ); Another…