Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. $args = array(
  3.     'post_type' => 'myportfoliotype', // Custom taxonomie name
  4.     'posts_per_page' => '15', // Number of Posts to display
  5.     'tax_query' => array(
  6.         array(
  7.             'taxonomy' => 'specifics', // Custom taxonomy name of your tags
  8.             'field' => 'slug',
  9.             'terms' => 'Vermittelt', // Your term
  10.             'operator' => 'NOT IN' // Exclude your term or include with IN
  11.         )
  12.     )
  13. );
  14.  
  15. $my_query = new WP_Query( $args );
  16.  
  17. if ( $my_query->have_posts() ) : while ( $my_query->have_posts() ) : $my_query->the_post();?>
  18.     <?php get_template_part('/includes/folio-types/foliopost-home');?> // Template to used for your post slider
  19. <?php endwhile; endif; ?>