How To Make WP Show Only One Post On The Front Page?
Follow the steps to make wordpress show only one post on the front page. 1) Make a copy of the index.php file thats in your worpress theme directory 2) Rename the index.php file to home.php 3) At the top of home.php, you need to make a call to query_posts REPLACE THIS CODE <?php get_header(); ?> [...]
Read more...Making a Web 2.0 Logo with Reflective Effect
I have always wanted to learn how to make a "Web 2.0 Logo with Relective Effect" because I think it looks very cool, but I on the other hand is lazy to go and find out how to do it. While I was looking for information to do a nice naruto logo, I came across [...]
Read more...How to Exclude WordPress Pages from List
Sometimes you created a wordpress page for some purpose but you do not want that particular page to be listed out. This is a coding to Exclude the WordPress Pages from List. <ul> <?php wp_list_pages(‘exclude=17,38′ ); ?> </ul> wp_list_pages() –> displays a list of WordPress Pages as links exclude –> the arguments to exclude pages 17,38 –> [...]
Read more...