Tag Archive: Tips and Tricks

Displaying Future Posts in WordPress

Tutorial

If you do like I do and schedule posts ahead of time (especially on the podcast), there's a way inside of WordPress to show your readers what posts are coming up next: <?php $my_query = new WP_Query('post_status=future&order=DESC&showposts=5'); if ($my_query->have_posts()) {     while ($my_query->have_posts()) : $my_query->the_post(); ?>         <?php the_date(); ?> - <?php the_title(); ?>     <?php endwhile; } ?> This will display up to…

Continue Reading

Set Up An Amazing E-Commerce Site in 30 Minutes with WordPress

WordPress

Step 1: Get a great product (you’d be surprised how many people forget this step…) Step 2: Install WordPress Step 3: Set up a static front page (Settings > Reading)… create a page called “front page” and a page called “blog”.  Head to the options menu and select the reading tab.  Change the “Front Page Displays…” options to ‘Front Page: front page’ and ‘Posts…

Continue Reading