Older Or Newer Post Links:


<div class="pnavigation">
                <p class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?>
                </p>
                <p class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?>
                </p>
        </div>

Javascript header navigation for Wordpress


<?php wp_enqueue_script('jquery'); ?>
      <script type='text/javascript'>
            jQuery(document).ready(function() {
            jQuery("#topNavigation ul").css({display: "none"}); // Opera Fix
            jQuery("#topNavigation li").hover(function(){
         jQuery(this).find('ul:first').css({visibility: "visible",display: "none"}).show(268);
        },function(){
         jQuery(this).find('ul:first').css({visibility: "hidden"});
        });
});
      </script>
</head>
<body>
<div id="nagivation">
    <ul id="topNavigation">
      <li><a href="<?php bloginfo('home'); ?>/beta/press-kit/"
        onmouseover="mopen('m1')"
        onmouseout="mclosetime()">PRESS KIT</a>
        <ul id="m1"
            onmouseover="mcancelclosetime()"
            onmouseout="mclosetime()">   
                  <?php wp_list_pages('child_of=7&title_li='); ?>
            </ul>
    </li>
    <li><a href="<?php bloginfo('home'); ?>/photo-graphics/"
        onmouseover="mopen('m2')"
        onmouseout="mclosetime()">PHOTO &amp; GRAPHICS</a>
        <ul id="m2"
            onmouseover="mcancelclosetime()"
            onmouseout="mclosetime()">   
                  <?php wp_list_pages('child_of=9&title_li='); ?>
            </ul>
    </li>
    <li><a href="<?php bloginfo('home'); ?>/press-releases/">PRESS RELEASES</a>
      
    </li>
    <li><a href="<?php bloginfo('home'); ?>/in-the-news/">IN THE NEWS</a></li>
    <li><a href="<?php bloginfo('home'); ?>/free-articles/">FREE ARTICLES</a></li>
    <li><a href="<?php bloginfo('home'); ?>/media-alerts/">MEDIA ALERTS</a></li>
    <li style="border-right:none;"><a href="<?php bloginfo('home'); ?>/about-franchising/">ABOUT FRANCHISING</a></li>
</ul> 

Wordpress child theme creation

Child theme different concept in "Wordpress".
Child theme is the inherited properties theme.Means:-It inherite the properties of basic theme or default theme.

Basic Files needed:
basic file needed in child theme is style.css.

Facts:
If you create a new function.php in child theme then parent theme function.php get combined with child theme's function.php.So if you need new functions in child theme the create function.php with new functions.

Needed:
In style.css you need to write at top something as-


/*
*Theme Name:Themename
*Theme URI: Themename's-homepage
*Description: brief-description
*Author: your-name
*Author URI: your-URI
*Template: use-this-to-define-a-parent-theme--optional
*Version: a-number--optional
*/