In this tutorial i will show you how to create a apple style css3 drop down menu in wordpress.Ok lets start, at first i use this code to create navigation in wordpress. Paste this code in your header.php [php] <div id="navigation" > <ul id="nav"> <li><a href="<?php bloginfo(‘siteurl’); ?>">Home</a></li> <?php wp_list_pages(‘title_li=&sort_column=menu_order’); ?> </ul> </div><!– #navigation –> […]
How to Create Recent Posts with Thumbnails in WordPress
While there are many plugins available to display recent posts with thumbnails, I prefer using a clean, code-based approach. If you’re comfortable working with your theme files, follow the steps below to display a list of recent posts with featured images directly in your sidebar or any widgetized area. Step 1: Add This Code to […]