Cany anyone help with this? Is it an error that will resolve itself?
]]>However the page template is currently displaying over 4 posts. Is there something else I need to tie into this page? I’m really trying to get the next_posts_link to activate, however no such luck yet. Here’s my code:
[Code moderated as per the Forum Rules. Please use the pastebin]
]]>So far, I have been unable to replicate this feature. I had a look at the v2.0 code, and quickly decided that editing the core files for this is above and beyond my skill. Since we only need this feature for the index page, I was hoping for a quick hack to implement this. One implementation I have been playing around with (pseudocode):
$posts_per_page = 5;
query_posts()
while (have_posts(): the_post())
{
if (the_time('m.d.Y') for this post == the_time('m.d.Y') for last post)
{
$posts_per_page++;
}
}
rewind_posts()
query_posts('posts_per_page='.$posts_per_page)
...(Show posts, etc.)
This implementation is not working for me, but perhaps something like this will work? Any thoughts?
]]>I tried to change the permission setting for option.php file but in vain.
Is there any way to change the “Show at most” setting? For example, can it be changed by doing something on a php file directly? Or any plug-in to control how many posts to show?
Hope somebody can help me.
Cheers.
]]>Any suggestions?
Thanks for the help!
]]>If, I adjust the setting in the Reading option to “5” for example, the search results and catagories will list 5 results (with more function) and then the next button. But, the front page lists 5 most recent posts.
How can I keep one full-text posts on the homepage, but list all results with “more” function in category and search results page views?
thanks!
]]>I’ve got a web site where the entries on the home page are limited to a fixed number (ie. 10), but I have a list of authors with their entries listed by titles and it’s defaulting to 10 as well (even though they have more than 10 entries).
How can I fix this? Thnx
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<span class="authorlist">
<li><a>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></li>
</span>
<?php endwhile; endif; ?>