Query a Page Taxonomy using get_posts
-
I am needed to briefly tweak the nav-menu.php page so I can easily add in NAV.
There is this section:
$recent_args = array_merge( $args, array( ‘orderby’ => ‘post_date’, ‘order’ => ‘DESC’, ‘showposts’ => 15, ‘tag’ => ‘patients-and-families’ ) );
$most_recent = $get_posts->query( $recent_args );
I added the Taxonomy Patients and Families to the Page. Now I want to query it. I have tried tag, category and few others with no luck.
Anyone know how to query the taxonomy from get_posts?
Thanks
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Query a Page Taxonomy using get_posts’ is closed to new replies.