catalyst with post_type=attachment
-
Hello, I am trying to achieve the following:
1: list of all posts within a specific category
2: list of all attachments within a specific categoryThe first request is no issue, for the second I need support. I tried several shortcode parameters with no results being returned, the following is just one of many:
[catlist taxonomy=’category’ term=’bme-protocols’ post_type=attachment post_status=inherit]
Running the following SQL script does what I want to achieve:
select p.post_title, p.guid, wpr.object_id, wp_terms.name from wp_terms inner join wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id inner join wp_term_relationships wpr on wpr.term_taxonomy_id = wp_term_taxonomy.term_taxonomy_id inner join wp_posts p on p.ID = wpr.object_id where taxonomy= "category" and p.post_type = 'attachment' and slug = "bme-vertrag"
All attachments with slug “bme-vertrag” from the default taxonomy “category” are retrieved; if I change the post type to “post” I get the posts only. To classify the media attachments with categories I use the enhanced media library plugin (which allows using the default taxonomy (category).
Am I using the parameters wrongly, does the plugin provide this functionality at all ?
Any help is appreciated … best regards
Bernhard
- The topic ‘catalyst with post_type=attachment’ is closed to new replies.