T3RCZ
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Fixing WordPress
In reply to: Showing the whole last post on homepageI use the Platform theme, so it’s a bit complicated. I tried to copy the existing single.php file when creating the home.php, but it consists only of this:
<?php /* This theme is Copyright (C) 2008-2010 Andrew Powers, PageLines.com (andrew AT pagelines DOT com) */ setup_pagelines_template();So I put the code mentioned above ABOVE this part of code.
My complete home.php looks like this:
<?php global $query_string; $more = -1; query_posts( $query_string . '&posts_per_page=1' ); the_content( $more_link_text , $strip_teaser ); ?> <?php /* This theme is Copyright (C) 2008-2010 Andrew Powers, PageLines.com (andrew AT pagelines DOT com) */ setup_pagelines_template();Forum: Fixing WordPress
In reply to: Showing the whole last post on homepageFirst of all, I’d like to apologize, my experience with php is very, very basic.
I edited the code as following:
<?php global $query_string; $more = -1; query_posts( $query_string . '&posts_per_page=1' ); ?>But nothing happened. Woudln’t you mind to show me how to use this? Im sorry to bother you, I’m just not sure how this works. 🙁
Forum: Fixing WordPress
In reply to: Showing the whole last post on homepageThanks for the reply!
It actually shows the last post, but only the excerpt with “Continue Reading” (You can see it on my page.). I’d like it to show the whole post. Any other idea how to do it?
Viewing 3 replies - 1 through 3 (of 3 total)