I'm looking for a theme like this...

lolzita

Registered Member
Jan 29, 2008
70
186
Hi, I'm not looking for very complicated theme like magazine style, but instead, I'm looking for theme like this :

PHP:
http://www.echemotherapy.com/

So, it makes it like a traditional website whereby when you add an article, it will not appear in the home page like an usual blog, instead, it will appear as a new page link at the navigation bar. So, the home page or the landing page will always be the same instead of updating every time when there is a new post.

Thanks :)
 
You can do it using wordpres. You just need to add this code to your template to list all your posts in the sidebar

Code:
<?php
// we add this, to show *all* posts sorted
// alphabetically by title
     $posts = query_posts($query_string . '&orderby=title&order=asc&posts_per_page=-1');
// here comes The Loop!
if (have_posts()) : while (have_posts()) : the_post(); ?>
 
Wow cool, thanks for the tips! Will this script prevent the homepage from auto update with new post too?
 
You could make the home page a WordPress page, and then suing the setting menu option set the startup page to the newly created page, and then the front page will look how you want..

Hope this helps
 
Back
Top
AdBlock Detected

We get it, advertisements are annoying!

Sure, ad-blocking software does a great job at blocking ads, but it also blocks useful features and essential functions on BlackHatWorld and other forums. These functions are unrelated to ads, such as internal links and images. For the best site experience please disable your AdBlocker.

I've Disabled AdBlock