Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » Atahualpa 3 Wordpress theme » Center area post/pages »

[SOLVED] Help modifying the loop with several parameters


 
Prev Previous Post   Next Post Next
  #1  
Old Jul 22, 2011, 08:52 PM
Tim F
 
66 posts · Jul 2009
[SOLVED] Help modifying the loop with several parameters

Hi all! Sorry to ask this, I guess it's more a PHP question than strictly an atahualpa question but I've been trying to figure it out for a few hours and it is starting to do my nut in!

I have a loop at the top of my page to show only posts from category 3. I am trying to create a second loop underneath this that:

Shows one post only, that post being the latest sticky post if a sticky post exists, otherwise just the most recent post, but excluding category 3.

I am using the following code right at the bottom of 'Content above the loop' and it works perfectly to show one post, sticky if present, but have not yet been able to exclude category 3.

Code:
<?php $args = array(
	'posts_per_page' => 1,
	'post__in'  => get_option( 'sticky_posts' ),
	'ignore_sticky_posts' => 1	
);
if (is_front_page() && !is_paged() ) $posts = query_posts($args); ?>
I have tried

Code:
<?php $args = array(
	'posts_per_page' => 1,
	'post__in'  => get_option( 'sticky_posts' ),
	'ignore_sticky_posts' => 1
	'cat' => -3	
);
if (is_front_page() && !is_paged() ) $posts = query_posts($args); ?>
But this breaks the loop at the top of the page (I get Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in URL/functions.php(575) : eval()'d code on line 45)

and it also stops the second loop from working.

I also tried concatenating 'cat=-3' with $args but got a similar error.

Can anyone see anything wrong with my syntax or method for excluding category 3? Any suggestions greatly appreciated!
 

Bookmarks



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] How to Eliminate Previous-Next Box Between Before-Loop and Loop? LaneLester Center area post/pages 0 Nov 10, 2010 09:03 AM
SQL queries for option parameters gejba Atahualpa 3 Wordpress theme 5 Jan 20, 2010 11:58 AM
Modifying Logo area jumbopihu Header configuration & styling 4 Jan 17, 2010 08:52 AM
PHP modifying the underlying code markelshark Atahualpa 3 Wordpress theme 1 Nov 17, 2009 02:41 PM
Modifying the footer of the template seftonview Atahualpa 3 Wordpress theme 1 Feb 9, 2009 05:38 AM


All times are GMT -6. The time now is 11:43 AM.


Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.