The Arras theme for WordPress is fantastic, i have only been using it for a day and am very impressed. One common thing i found people needing is the ability to offset posts so they can add as many as they want and have them display properly (not more than once) in the “Featured Articles” and “More News” sections. I have had a tweak around, and here is the easiest way i have found to do it:
Open up “home.php” in the root of the themes folder.
Find the following line:
elseif ($featured2_cat == '0') $query2 = 'showposts=' . arras_get_option('featured2_count')
And change it to:
elseif ($featured2_cat == '0') $query2 = 'showposts=' . arras_get_option('featured2_count') . '&offset=4';
This will offset the “Featured Articles #2″ section by 4 posts. For me this is perfect because i have four posts in the first “Featured Articles” section.
To then do the “Older News” (or whatever it is called) section, find the following line:
'showposts' => ( (arras_get_option('index_count') == 0 ? get_option('posts_per_page') : arras_get_option('index_count')) )
);
And change it to:
'showposts' => ( (arras_get_option('index_count') == 0 ? get_option('posts_per_page') : arras_get_option('index_count')) )
) . '&offset=13';
This will offset the news by 13 posts, because i have 4 “Featured Articles #1″ and 9 “Featured Articles #2″ which means in total i need to skip 13 posts.
Hope this helps people!

Awesome, had been driving myself nuts trying to get this resolved. Now that I see how you did it, it makes perfect sense. Think I’ll try hacking the offsets into the options so it can be changed (in case I need to change the number of posts for featured articles #1.
Awesome!
This didnt work for me. I have it set so only one category shows up in the news section and when I did this all the categories showed up and only one of the news items showed the category next to t…odd.
Hi richl ,
I have edited in my blog follow your guide , but it doesn’t work . Can you help me to fix it?
I want to offset session “Featured Articles #2″ by 6 post like this :
http://s782.photobucket.com/albums/yy107/playonl/?action=view¤t=FeaturedActicles2.jpg
Please tell me what can I do?
Thank you .
This only works if All Categories are selected!
@Rich… two questions:
1) I’m tweaking Arras right now and would like to add both the featured and sub-featured article blocks to the Category Archive pages… I’m guessing that’s easy, but do you have any tips?
2) How would you enable your offset changes for Category Archives also?
Thanks in advance!
Thanks Rich! Worked perfect for me. Hope all is going good with em domains.
awesome man
thanks. \o/ great success
Whow, thank you! Have been working with this theme for a day (just like in your intro), and have been wondering how to fix this. Not really smart with coding, so this was helpful. Thanks!
have you try to make the number of posts for cat 2 be less than 9? i try to set it to 6, but it always shows 9. let me know if it works for you
na.. dont worry. it was a wordpress bug: http://core.trac.wordpress.org/ticket/9300
dont think it will be fixed anytime soon
Thanks mate, you’ve saved the day