Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other WordPress: Exclude Posts in Post Formats WITH a Certain Category

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #45873
    chrislusk
    Member

    I can exclude the post_format_videos with no problem but I only want to exclude those video post formats if they are also in the category “How To”. Here is my current code:
    $args = array(
    ‘tax_query’ => array(
    array(
    ‘taxonomy’ => ‘post_format’,
    ‘field’ => ‘slug’,
    ‘terms’ => ‘post-format-video’,
    ‘operator’ => ‘NOT IN’
    )
    )
    );
    query_posts( $args );

    Thank you

Viewing 1 post (of 1 total)
  • The forum ‘Other’ is closed to new topics and replies.