• Hello!

    So according to this: http://core.trac.wordpress.org/ticket/16157 and this: http://core.trac.wordpress.org/ticket/16706 …category__and has gone a bit AWOL. There’s a suggested workaround there in the form of this:

    query_posts(array(
      'tax_query' => array(
        array( 'taxonomy' => 'category', 'terms' => 1 ),
        array( 'taxonomy' => 'category', 'terms' => 461 ),
      )
    ));

    How can I work that above item, into my theme, which has this code for a query argument:

    <?php $category_id = get_cat_ID($data['category']); ?>
                       		<?php $q = $category_id; ?> 
    
                       		<?php $catArgs = array(
                       			'category__and' => array($q, 6),
                       			'orderby'=>meta_value,
                       			'meta_value'=>student-sort,
                       			'order'=>ASC,
                       			'posts_per_page'=>5,
                       			'offset'=>0
                       		);?>

    Any suggestions would be helpful.

    Thank you!

    Nadine

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter nadine00

    (@nadine00)

    Help? Anyone?

    Basically what’s happening is the user is supplying the first category through the admin, then i’m combining it with another hard coded category (it never changes).

    I really need to find a workaround that will work with 3.2, my whole template worked on a custom bit of data and category__and 🙁 so the bug in the upgrade really, really borked me.

    Thread Starter nadine00

    (@nadine00)

    It would also help if i spelt that there post title right, but i’m dyslexic. So, it happens sometimes. Sorry.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘"cateogry__and" work around’ is closed to new replies.