I seem to be having trouble querying for files by tag. Are tags for files not like tags for posts?
$args = array(
'showposts' => 10000, //see comment above
'offset' => $pagenumber,
'orderby' => 'post_date',
'order' => 'DESC',
'post_type' => 'wpfb_filepage',
'post_status' => 'publish',
'tag' => 'church-team-member'
);
$query = new WP_Query($args);
For some reason this will not pull the documents with the tag ‘Church Team Member’. If I take out the take I get all documents. This is for a custom page we are building outside of the plugin where we serve up files based on jobs.
-
This topic was modified 10 years, 10 months ago by Christopher. Reason: typo in code