'Sidebar', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); } //Post Thumbnails if ( function_exists( 'add_theme_support' ) ) add_theme_support( 'post-thumbnails' ); //Register Custom Menu add_action( 'init', 'register_my_menu' ); function register_my_menu() { register_nav_menu( 'top-navigation', __( 'Top Navigation' ) ); } // Add credit to the holy designer function credit_importante() { echo "

Theme Design by grimmdude.com

"; } // Load jQuery function my_init_method() { wp_enqueue_script('jquery'); } add_action('init', 'my_init_method'); // Support for RSS Feeds add_theme_support('automatic-feed-links'); ?>