MathCiet
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
Forum: Fixing WordPress
In reply to: WP_Query not workingYes! 🙂
Thank you for your help!Forum: Fixing WordPress
In reply to: WP_Query not workingYou also need to change while ( have_posts() ) : the_post(); to while ( $query->have_posts() ) : $query->the_post();Forum: Fixing WordPress
In reply to: WP_Query not workingStill not working: suddenly I get pages in the newsfeed :p
Forum: Fixing WordPress
In reply to: WP_Query not workingMaybe, but I only want it on one page… 🙂
Forum: Fixing WordPress
In reply to: WP_Query not working<?php $args = array( 'category_name' => 'homepage', ); $query = new WP_Query( 'cat=-$args' ); ?>isn’t working either 🙁
Forum: Fixing WordPress
In reply to: WP_Query not workingAlso not working:
$query = new WP_Query( 'category__not_in => 11' );Forum: Fixing WordPress
In reply to: WP_Query not workingI want to exclude the posts tagged with homepage.
I also tried$query = new WP_Query( 'cat=-11' );but it isn’t working either.
Viewing 7 replies - 1 through 7 (of 7 total)