WordPress Menu: Fixed section menu for pages

With this PHP function you can create a hierarchical and navigational menu for your pages in WordPress. It will take the top parent page and keep it as a title, and then build their children pages keeping the hierarchy and the same markup used in wp_list_pages();
Continue Reading →

Easy 404 redirect

Put this code in your 404.php template and every page Not Found will be redirected to your index.php:

<?php
    header("HTTP/1.1 301 Moved Permanently");
    header("Location: ".get_bloginfo('url'));
    exit();
?>