| wordpress is home/frontpage functions
|
surrealillusions

msg:4340848 | 4:00 pm on Jul 18, 2011 (gmt 0) | Hi, I've found the if_home and if_front_page to be potentially useful..but..also found that it causes problems. Current setup is that in the index.php file I have some static content followed by the list of blog posts, limited to only 1. When clicking on "older posts", it goes to /page/2/ as the URL, but its basically a repost of the home page. I then did this: <?php if ( is_front_page() ) { query_posts('showposts=1'); } else { query_posts('showposts=10'); } ?> And also surrounded the static content in a similiar way <?php if ( is_front_page() ) { // static content } else { // nothing at all } ?> I also tried it with is_home function, but neither work. I just get a repeat of the home page on a different URL and the most recent post rather than a list of the 10 recent posts. Anyone know why and how to get it to work? Thanks.
|
coopster

msg:4357174 | 3:08 pm on Aug 31, 2011 (gmt 0) | surrealillusions, I'm going to move this to the WP forum where perhaps somebody can assist.
|
lorax

msg:4357596 | 1:06 pm on Sep 1, 2011 (gmt 0) | Well first off, I'd recommend you don't edit index.php as WordPress uses it for so many different things. Edits should be done using the Theme's functions.php file or create your own theme to suit.
|
|
|