0

フィルター (スラッグ) をループから除外しようとしています。私は除外を研究しており、コード内のさまざまな場所で試しました。通常、私はページを破ります。これはコードです。スラッグ 20 を除外するように変更しようとしています。これは「アメリカ」という名前のフィルターです。配列の先頭で除外しようとしましたが、うまくいきませんでした。次に、 foreach($catz as $cat) セクションの後で試しました。この 'exclude=20&title_li=' を試しました。cat=-20 などいろいろ組み合わせてみました。どんな助けでも大歓迎です。

// The Custom Query
 $args = array(
'post_type'         => 'portfolio',
'posts_per_page'    => $counter_folio,
'paged'             => $paged,
'order'             => 'DESC'

 );
 query_posts( $args );
 while( have_posts() ) : the_post();
 $color = substr(get_option('dcb_dynamic_color'), 1);
 // Get the original thumbnail of the post
$src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), false, '' );
$excerpt = get_the_excerpt();
// Get the custom fields
$vimeo = get_post_meta($post->ID, "vimeo", true);
$youtube = get_post_meta($post->ID, "youtube", true);
// Get the filter > Category of item
$catz = wp_get_object_terms($post->ID,'filters');
foreach($catz as $cat){ 
    $currcat = $cat->slug;
    $catname = $cat->name;
    break;
}
$counter++;
?>
4

1 に答える 1

0

ID 20の投稿をフィルタリングする場合は、次のコードで除外してください

    // The Custom Query
     $args = array(
    'post_type'         => 'portfolio',
    'posts_per_page'    => $counter_folio,
    'paged'             => $paged,
    'order'             => 'DESC'

     );
     query_posts( $args );
     while( have_posts() ) : the_post();
     $color = substr(get_option('dcb_dynamic_color'), 1);
    // Get the original thumbnail of the post
   $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), false, '' );
   $excerpt = get_the_excerpt();
   // Get the custom fields
   $vimeo = get_post_meta($post->ID, "vimeo", true);
   $youtube = get_post_meta($post->ID, "youtube", true);
   // Get the filter > Category of item
   $catz = wp_get_object_terms($post->ID,'filters');
   foreach($catz as $cat){ 
    if($cat->slug != 'american')
    {
      $currcat = $cat->slug;
      $catname = $cat->name;
      break;
     }
    }
    $counter++;
于 2013-03-07T12:55:19.780 に答える