管理バーをフロントページに表示させるには、テーマファイルの<head>内に<?php wp_head(); ?>と、</body>の直前に<?php wp_footer(); ?>の両方を記述すればOKです♪
例
たとえば、テーマの index.php に次のように書けば管理バーが表示されます。
<!DOCTYPE html> <!--[if IE 6]> <html id="ie6" <?php language_attributes(); ?>> <![endif]--> <!--[if IE 7]> <html id="ie7" <?php language_attributes(); ?>> <![endif]--> <!--[if IE 8]> <html id="ie8" <?php language_attributes(); ?>> <![endif]--> <!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!--> <html <?php language_attributes(); ?>> <!--<![endif]--> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <title></title> <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" /> <head> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <div id="page" class="hfeed"> <header id="branding" role="banner"> <hgroup></hgroup> <nav id="access" role="navigation"></nav> </header><!-- #branding --> <div id="main"> </div><!-- #main --> <footer id="colophon" role="contentinfo"></footer> </div><!-- #page --> <?php wp_footer(); ?> </body> </html>