Show Random Posts in one page with WordPress

You need to create random.php page in your template.  In that page just copy paste the following code: <?php query_posts(array(‘orderby’ => ‘rand’, ‘showposts’ => 1)); if (have_posts()) : while (have_posts()) : the_post(); ?> <h1><a href=”<?php the_permalink() ?>”><?php the_title(); ?></a></h1> <?php … Continue reading

How to add the flash intro in wordpress sites

Follow my steps to create flash intro in wordpress sites. 1. Create file named intro.php and just copy paste following code <?php /* Template Name: intro */ if (have_posts()) : while (have_posts()) : the_post(); the_content(); endwhile; endif; ?> 2. Upload … Continue reading