Hi all,
I am trying to limit my frontpage to 1-full-post. At the same time I want all archives and searches to display more than one result per page. Changing the "Blog pages show at most" Value under Admin -> Settings -> Readings affects not only the Frontpage, but also archives.
How can I manually adjust one of the values without too much hacking? I am using the Autofocus+ Child Theme http://fthrwght.com/autofocus/plusdemo/
My initial thought was to use a conditional function like this:
function my_custom_query() {
if (is_archive()) {
global $query_string;
query_posts($query_string . "&showposts=5");
}
}
add_action('thematic_above_indexloop','my_custom_query');
… which does not work.
Any ideas?