Hi, I'm new to wordpress and have just set up my own site. The version I'm running is 2.84 I think. Well on my template I've got the standard 'home' and 'about' entries on the navigation bar at the top. I want to add another entry 'My blog' How do I do this. I would also like to add a few other entries later on. Also when I got my wordpress on my hostgator account I installed a wordpress stats plugin. To activate this program you have to enter a API code or something. I can't find it, it hasn't been emailed to me, and it's not in my profile, so I can't get my stats up and running until I get that key. Thanks in advance for any help.
Hi Johnny, Could you first head over to Appearance > Editor > Header (header.php), copy it and paste it here. Then head over to your main website, right click on the page and select "View Page Source" or "View Source"... copy it up till where you see "Home" and "About". That'll give us some idea on how your theme works.
You could probably do this by just creating a new page in your WP dashboard. You can jut apply for another API key from wordpress.
Nix is exactly right, you would just add the titles and links and they will appear in the navbar. Depending on which them you have, you can add categories and they will appear in the navbar.
The header........... <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <?php /* Arclite/digitalnature */ if(get_option('arclite_meta')<>'') { if (is_home()) { $metakeywords = get_option('arclite_meta'); } else if(is_category()) { foreach((get_the_category()) as $category) { $metakeywords = $metakeywords.$category->cat_name . ','; } } else{ $metakeywords = ""; $tags = wp_get_post_tags($post->ID); foreach ($tags as $tag ) { $metakeywords = $metakeywords . $tag->name . ", "; } } } ?> <html xmlns="http://www.w3.org/1999/xhtml" <?php //language_attributes(); ?>> <head profile="http://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <?php if(($metakeywords<>'') && (!is_404())) { ?> <meta name="keywords" content="<?php print $metakeywords; ?>" /> <meta name="description" content="<?php bloginfo('description'); ?>" /> <?php } ?> <title><?php wp_title('«', true, 'right'); if (get_query_var('cpage') ) print ' Page '.get_query_var('cpage').' « ';?> <?php bloginfo('name'); ?></title> <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico" /> <?php if(!defined("PHP_EOL")) define("PHP_EOL", strtoupper(substr(PHP_OS,0,3) == "WIN") ? "\r\n" : "\n"); print '<style type="text/css" media="all">'.PHP_EOL; if(get_option('arclite_imageless')=='yes') print '@import "'.get_bloginfo('template_url').'/style-imageless.css";'.PHP_EOL; else { print '@import "'.get_bloginfo('stylesheet_url').'";'.PHP_EOL; if(get_option('arclite_widgetbg')<>'') print '@import "'.get_bloginfo('template_url').'/options/side-'.get_option('arclite_widgetbg').'.css";'.PHP_EOL; if(get_option('arclite_contentbg')<>'') print '@import "'.get_bloginfo('template_url').'/options/content-'.get_option('arclite_contentbg').'.css";'.PHP_EOL; else print '@import "'.get_bloginfo('template_url').'/options/content-default.css";'.PHP_EOL; if(get_option('arclite_sidebarpos')=='left') print '@import "'.get_bloginfo('template_url').'/options/leftsidebar.css";'.PHP_EOL; if((get_option('arclite_header')=='default') || (get_option('arclite_header')=='')) print '@import "'.get_bloginfo('template_url').'/options/header-default.css";'.PHP_EOL; else if(get_option('arclite_header')=='user') { if(get_option('arclite_headerimage')<>'') print '#header{ background: transparent url("'.get_option('arclite_headerimage').'") no-repeat center top; }'.PHP_EOL; else if(get_option('arclite_headerimage2')<>'') print '#header-wrap{ background: transparent url("'.get_option('arclite_headerimage2').'") repeat center top; }'.PHP_EOL; } else if(get_option('arclite_header')=='user2') print '#header, #header-wrap{ background: #'.get_option('arclite_headercolor').'; }'.PHP_EOL; else print '@import "'.get_bloginfo('template_url').'/options/header-'.get_option('arclite_header').'.css";'.PHP_EOL; } $usercss = get_option('arclite_css'); if($usercss<>'') print $usercss; print '</style>'.PHP_EOL; ?> <!--[if lte IE 6]> <style type="text/css" media="screen"> @import "<?php bloginfo('template_url'); ?>/ie6.css"; </style> <![endif]--> <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?> <?php if(get_option('arclite_jquery')<>'no') { ?> <?php wp_enqueue_script('jquery'); ?> <?php wp_enqueue_script('arclite',get_bloginfo('template_url').'/js/arclite.js'); ?> <?php } ?> <?php wp_head(); ?> </head> <body <?php if (is_home()) { ?>class="home"<?php } else { ?>class="inner"<?php } ?>> <!-- page wrap --> <div id="page"<?php if(!is_page_template('page-nosidebar.php')) { print ' class="with-sidebar'; if((get_option('arclite_3col')=='yes') || (is_page_template('page-3col.php'))) print ' and-secondary'; print '"'; } ?>> <!-- header --> <div id="header-wrap"> <div id="header" class="block-content"> <div id="pagetitle"> <?php // logo image? if(get_option('arclite_logo')=='yes' && get_option('arclite_logoimage')) { ?> <h1 class="logo"><a href="<?php bloginfo('url'); ?>/"><img src="<?php print get_option('arclite_logoimage'); ?>" title="<?php bloginfo('name'); ?>" alt="<?php bloginfo('name'); ?>" /></a></h1> <?php } else { ?> <h1 class="logo"><a href="<?php bloginfo('url'); ?>/"><?php bloginfo('name'); ?></a></h1> <?php } ?> <?php if(get_bloginfo('description')<>'') { ?><h4><?php bloginfo('description'); ?></h4><?php } ?> <div class="clear"></div> <?php if(get_option('arclite_search')<>'no') { ?> <?php // get_search_form(); ?> <!-- search form --> <div class="search-block"> <div class="searchform-wrap"> <form method="get" id="searchform" action="<?php bloginfo('url'); ?>/"> <fieldset> <input type="text" name="s" id="searchbox" class="searchfield" value="<?php _e("Search","arclite"); ?>" onfocus="if(this.value == '<?php _e("Search","arclite"); ?>') {this.value = '';}" onblur="if (this.value == '') {this.value = '<?php _e("Search","arclite"); ?>';}" /> <input type="submit" value="Go" class="go" /> </fieldset> </form> </div> </div> <!-- /search form --> <?php } ?> </div> <!-- main navigation --> <div id="nav-wrap1"> <div id="nav-wrap2"> <ul id="nav"> <?php if((get_option('show_on_front')<>'page') && (get_option('arclite_topnav')<>'categories')) { if(is_home() && !is_paged()){ ?> <li id="nav-homelink" class="current_page_item"><a class="fadeThis" href="<?php echo get_settings('home'); ?>" title="<?php _e('You are Home','arclite'); ?>"><span><?php _e('Home','arclite'); ?></span></a></li> <?php } else { ?> <li id="nav-homelink"><a class="fadeThis" href="<?php echo get_option('home'); ?>" title="<?php _e('Click for Home','arclite'); ?>"><span><?php _e('Home','arclite'); ?></span></a></li> <?php } } ?> <?php if(get_option('arclite_topnav')=='categories') { echo preg_replace('@\<li([^>]*)>\<a([^>]*)>(.*?)\<\/a>@i', '<li$1><a class="fadeThis"$2><span>$3</span></a>', wp_list_categories('show_count=0&echo=0&title_li='.get_option('arclite_excludenav'))); } else { echo preg_replace('@\<li([^>]*)>\<a([^>]*)>(.*?)\<\/a>@i', '<li$1><a class="fadeThis"$2><span>$3</span></a>', wp_list_pages('echo=0&orderby=name&title_li=&exclude='.get_option('arclite_excludenav'))); } ?> </ul> </div> </div> <!-- /main navigation --> </div> </div> <!-- /header --> ..................................................................................................................................... Page source.................. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head profile="http://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title> Esl jobs 4 teachers.com</title> <link rel="alternate" type="application/rss+xml" title="Esl jobs 4 teachers.com RSS Feed" href="http://esljobs4teachers.com/?feed=rss2" /> <link rel="alternate" type="application/atom+xml" title="Esl jobs 4 teachers.com Atom Feed" href="http://esljobs4teachers.com/?feed=atom" /> <link rel="pingback" href="http://esljobs4teachers.com/xmlrpc.php" /> <link rel="shortcut icon" href="http://esljobs4teachers.com/wp-content/themes/arclite/favicon.ico" /> <style type="text/css" media="all"> @import "http://esljobs4teachers.com/wp-content/themes/arclite/style.css"; @import "http://esljobs4teachers.com/wp-content/themes/arclite/options/side-blue.css"; @import "http://esljobs4teachers.com/wp-content/themes/arclite/options/content-white.css"; @import "http://esljobs4teachers.com/wp-content/themes/arclite/options/header-blue.css"; </style> <!--[if lte IE 6]> <style type="text/css" media="screen"> @import "http://esljobs4teachers.com/wp-content/themes/arclite/ie6.css"; </style> <![endif]--> <!-- Multi-level Navigation Plugin v2.2 by PixoPoint Web Development ... http://pixopoint.com/multi-level-navigation/ --> <link rel="stylesheet" type="text/css" href="http://esljobs4teachers.com/wp-content/plugins/multi-level-navigation-plugin/style.php" /> <script type='text/javascript' src='http://esljobs4teachers.com/wp-includes/js/jquery/jquery.js?ver=1.3.2'></script> <script type='text/javascript' src='http://esljobs4teachers.com/wp-content/themes/arclite/js/arclite.js?ver=2.8.4'></script> <script type='text/javascript' src='http://esljobs4teachers.com/wp-content/plugins/multi-level-navigation-plugin/scripts/hoverIntent.js.php?ver=r5'></script> <script type='text/javascript' src='http://esljobs4teachers.com/wp-content/plugins/multi-level-navigation-plugin/scripts/superfish.js?ver=1.4.8'></script> <script type='text/javascript' src='http://esljobs4teachers.com/wp-content/plugins/multi-level-navigation-plugin/scripts/superfish_settings.js.php?ver=1.0'></script> <link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://esljobs4teachers.com/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://esljobs4teachers.com/wp-includes/wlwmanifest.xml" /> <link rel='index' title='Esl jobs 4 teachers.com' href='http://esljobs4teachers.com' /> <meta name="generator" content="WordPress 2.8.4" /> <link rel="stylesheet" href="http://esljobs4teachers.com/wp-content/plugins/job-listing/tic-style.css" type="text/css" /> </head> <body class="home"> <!-- page wrap --> <div id="page" class="with-sidebar"> <!-- header --> <div id="header-wrap"> <div id="header" class="block-content"> <div id="pagetitle"> <h1 class="logo"><a href="http://esljobs4teachers.com/">Esl jobs 4 teachers.com</a></h1> <h4>Esl teaching jobs & careers</h4> <div class="clear"></div> <!-- search form --> <div class="search-block"> <div class="searchform-wrap"> <form method="get" id="searchform" action="http://esljobs4teachers.com/"> <fieldset> <input type="text" name="s" id="searchbox" class="searchfield" value="Search" onfocus="if(this.value == 'Search') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search';}" /> <input type="submit" value="Go" class="go" /> </fieldset> </form> </div> </div> <!-- /search form --> </div> <!-- main navigation --> <div id="nav-wrap1"> <div id="nav-wrap2"> <ul id="nav"> <li id="nav-homelink" class="current_page_item"><a class="fadeThis" href="http://esljobs4teachers.com" title="You are Home"><span>Home</span></a></li> <li class="page_item page-item-2"><a class="fadeThis" href="http://esljobs4teachers.com/?page_id=2" title="About"><span>About</span></a></li> </ul> </div> </div> <!-- /main navigation --> </div> </div> <!-- /header --> <!-- main wrappers --> <div id="main-wrap1"> <div id="main-wrap2"> <!-- main page block --> <div id="main" class="block-content"> <div class="mask-main rightdiv"> <div class="mask-left"> <!-- first column --> <div class="col1"> <div id="main-content"> <!-- post --> <div id="post-32" class="post-32 post hentry category-uncategorized"> <div class="post-header"> <h3 class="post-title"><a href="http://esljobs4teachers.com/?p=32" rel="bookmark" title="Permanent Link: Jp education need English and Chinese teachers">Jp education need English and Chinese teachers</a></h3> <p class="post-date"> <span class="month">Sep</span> <span class="day">29</span> </p> <p class="post-author"> <span class="info">Posted by <a href="http://esljobs4teachers.com/?author=1" title="Posts by esljobs4teachers.com ">esljobs4teachers.com</a> in <a href="http://esljobs4teachers.com/?cat=1" title="View all posts in Thailand jobs" rel="category">Thailand jobs</a> | <a href="http://esljobs4teachers.com/?p=32#respond" class="comments" title="Comment on Jp education need English and Chinese teachers">No Comments</a> | <a class="post-edit-link" href="http://esljobs4teachers.com/wp-admin/post.php?action=edit&post=32" title="Edit post">Edit</a> </span> </p> </div> <div class="post-content clearfix"> <div> <p>Jp education are now looking to recruit English and Chinese teachers for the new semester.</p> <div style="float: right;margin: 3px;"><script type="text/javascript"><!-- google_ad_client = "pub-ca-pub-4026478903502426"; google_alternate_color = "FFFFFF"; google_ad_width = ; google_ad_height = ; google_ad_format = "_as"; google_ad_type = "text"; google_ad_channel =""; google_color_border = ""; google_color_link = ""; google_color_bg = ""; google_color_text = ""; google_color_url = ""; google_ui_features = "rc:0"; //--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script></div><p>We have 25 – 50 positions going in and around Bangkok. Pay rate around 30,000 baht per month.</p> <p>Further information go to our website www.jpteachers.com there you can apply for the jobs.</p> <p><strong>www.Jpteachers.com</strong></div> </div> </div> <!-- /post --> <!-- post --> <div id="post-22" class="post-22 post hentry category-china-jobs"> <div class="post-header"> <h3 class="post-title"><a href="http://esljobs4teachers.com/?p=22" rel="bookmark" title="Permanent Link: Esl teachers required for teaching jobs in Dalian, China">Esl teachers required for teaching jobs in Dalian, China</a></h3> <p class="post-date"> <span class="month">Sep</span> <span class="day">27</span> </p> <p class="post-author"> <span class="info">Posted by <a href="http://esljobs4teachers.com/?author=1" title="Posts by esljobs4teachers.com ">esljobs4teachers.com</a> in <a href="http://esljobs4teachers.com/?cat=7" title="View all posts in China jobs" rel="category">China jobs</a> | <a href="http://esljobs4teachers.com/?p=22#respond" class="comments" title="Comment on Esl teachers required for teaching jobs in Dalian, China">No Comments</a> | <a class="post-edit-link" href="http://esljobs4teachers.com/wp-admin/post.php?action=edit&post=22" title="Edit post">Edit</a> </span> </p> </div> <div class="post-content clearfix"> <p><span><span style="color: #000000;">This is a great location to teach in and popular with tourists. To teach here you must have…</span></span></p> <p><span><span style="color: #000000;">A recognized tefl certificate.</span></span></p> <p><span><span style="color: #000000;">Be a native English speaker</span></span></p> <p><span><span style="color: #000000;">1 years practical esl teaching experience.</span></span></p> <p><span><span style="color: #000000;">Be enthusiastic and have great communication skills.</span></span></p> <p><strong><span><span style="color: #000000;">We can offer you…</span></span></strong></p> <p><span><span style="color: #000000;">A monthly salary of 4000 to 8000 rmb per month</span></span></p> <p><span><span style="color: #000000;">A generous accommodation allowance</span></span></p> <p><span><span style="color: #000000;">72 contact working hours pe month + 2 days off per week</span></span></p> <p><span><span style="color: #000000;">Upon completion of our one year contract you’ll receive a completion bonus of 15000 – 2000 yuan!</span></span></p> <p><span><span style="color: #000000;">Foreign insurance provided.</span></span></p> <p><strong><span><span style="color: #000000;">To apply please send…</span></span></strong></p> <p><span><span style="color: #000000;">Copies of your certificates diplomas/degrees/tefl/tesol etc</span></span></p> <p><span><span style="color: #000000;">A recent color photo of yourself</span></span></p> <p><span><span style="color: #000000;">Dates you’re available to commence employment</span></span></p> <p><span><span style="color: #000000;">Cv/resume</span></span></p> <p><span><span style="color: #000000;">Copy of your passport</span></span></p> <p><strong><span><span style="color: #000000;">Contact details…</span></span></strong><strong><span><span style="color: #000000;"><br /> </span></span></strong></p> <p><span><span style="color: #000000;">Our e-mail:<strong> </strong><a href="mailto:xiadongqing128@vip.sohu.com">xiadongqing128@vip.sohu.com</a></span></span></p> <p><span><span style="color: #000000;">Cell number: 86-13840932200 </span></span></p> <p><span><span style="color: #000000;"><br /> </span></span></p> <p><span><span style="color: #000000;"><br /> </span></span></p> <p><strong><span><span style="color: #000000;"><br /> </span></span></strong></p> <p><span><span style="color: #000000;"><br /> </span></span></p> <p><strong><span><span style="color: #000000;"><br /> </span></span></strong></p> <p><strong><span><span style="color: #000000;"><br /> </span></span></strong></p> <p><span><span style="color: #000000;"><br /> </span></span></p> <p><span><span style="color: #000000;"><br /> </span></span></p> </div> </div> <!-- /post --> <!-- post --> <div id="post-16" class="post-16 post hentry category-uncategorized"> <div class="post-header"> <h3 class="post-title"><a href="http://esljobs4teachers.com/?p=16" rel="bookmark" title="Permanent Link: Kindergarten teacher required Bangkok">Kindergarten teacher required Bangkok</a></h3> <p class="post-date"> <span class="month">Sep</span> <span class="day">27</span> </p> <p class="post-author"> <span class="info">Posted by <a href="http://esljobs4teachers.com/?author=1" title="Posts by esljobs4teachers.com ">esljobs4teachers.com</a> in <a href="http://esljobs4teachers.com/?cat=1" title="View all posts in Thailand jobs" rel="category">Thailand jobs</a> | <a href="http://esljobs4teachers.com/?p=16#respond" class="comments" title="Comment on Kindergarten teacher required Bangkok">No Comments</a> | <a class="post-edit-link" href="http://esljobs4teachers.com/wp-admin/post.php?action=edit&post=16" title="Edit post">Edit</a> </span> </p> </div> <div class="post-content clearfix"> <p><!-- @page { size: 8.5in 11in; margin: 0.79in } P { margin-bottom: 0.08in } --></p> <p style="margin-bottom: 0in;">Kindergarten teacher required at Palina kindergarten in Bangkok. Applicants should ideally have some form of early childhood education training and be a native English speaker. Bachelors degree required any field.</p> <p style="margin-bottom: 0in;">Salary 40,000 baht per month.</p> <p style="margin-bottom: 0in;">Start date Nov 2009</p> <p style="margin-bottom: 0in;">Contact: palina_ep@yahoo.com with full c.v or give kun Lek a bell on 02 -72 62 32 3</p> <p style="margin-bottom: 0in;"> </div> </div> <!-- /post --> <!-- post --> <div id="post-10" class="post-10 post hentry category-china-jobs"> <div class="post-header"> <h3 class="post-title"><a href="http://esljobs4teachers.com/?p=10" rel="bookmark" title="Permanent Link: HTB-Shangqiu public university requires Computer science teacher">HTB-Shangqiu public university requires Computer science teacher</a></h3> <p class="post-date"> <span class="month">Sep</span> <span class="day">25</span> </p> <p class="post-author"> <span class="info">Posted by <a href="http://esljobs4teachers.com/?author=1" title="Posts by esljobs4teachers.com ">esljobs4teachers.com</a> in <a href="http://esljobs4teachers.com/?cat=7" title="View all posts in China jobs" rel="category">China jobs</a> | <a href="http://esljobs4teachers.com/?p=10#respond" class="comments" title="Comment on HTB-Shangqiu public university requires Computer science teacher">No Comments</a> | <a class="post-edit-link" href="http://esljobs4teachers.com/wp-admin/post.php?action=edit&post=10" title="Edit post">Edit</a> </span> </p> </div> <div class="post-content clearfix"> <p><img class="alignnone size-full wp-image-11" title="shc" src="http://esljobs4teachers.com/wp-content/uploads/2009/09/shc.jpg" alt="shc" width="150" height="128" />Located in Shangqjui city the Henan public university is looking for Science teachers.</p> <p>If you have a Bachelors degree in computer science and are a native English speaker with teaching experience, We’d love to hear from you.</p> <p>Salary is 5000 to 6000 rmb per month for 16 50 minute classes. We offer a free apartment with all mod cons + a generous return airfare deal.</p> <p>If you’re interested then send copies of your certificates and degree with your c.v to:</p> <p><a href="mailto:lucky.foreignteachers@gmail.com">lucky.foreignteachers@gmail.com</a></p> </div> </div> <!-- /post --> <!-- post --> <div id="post-7" class="post-7 post hentry category-uncategorized"> <div class="post-header"> <h3 class="post-title"><a href="http://esljobs4teachers.com/?p=7" rel="bookmark" title="Permanent Link: English teachers Ramkhamhaeng Advent International School">English teachers Ramkhamhaeng Advent International School</a></h3> <p class="post-date"> <span class="month">Sep</span> <span class="day">25</span> </p> <p class="post-author"> .................................................................................................... I hope that helps, Thanks.
Do wrap your code with code tags please Anyways, this is the part you should be looking at: header.php <!-- main navigation --> <div id="nav-wrap1"> <div id="nav-wrap2"> <ul id="nav"> <?php if((get_option('show_on_front')<>'page') && (get_option('arclite_topnav')<>'categories')) { if(is_home() && !is_paged()){ ?> <li id="nav-homelink" class="current_page_item"><a class="fadeThis" href="<?php echo get_settings('home'); ?>" title="<?php _e('You are Home','arclite'); ?>"><span><?php _e('Home','arclite'); ?></span></a></li> <?php } else { ?> <li id="nav-homelink"><a class="fadeThis" href="<?php echo get_option('home'); ?>" title="<?php _e('Click for Home','arclite'); ?>"><span><?php _e('Home','arclite'); ?></span></a></li> <?php } } ?> <?php if(get_option('arclite_topnav')=='categories') { echo preg_replace('@\<li([^>]*)>\<a([^>]*)>(.*?)\<\/a>@i', '<li$1><a class="fadeThis"$2><span>$3</span></a>', wp_list_categories('show_count=0&echo=0&title_li='.get_option('arclite_excludenav'))); } else { echo preg_replace('@\<li([^>]*)>\<a([^>]*)>(.*?)\<\/a>@i', '<li$1><a class="fadeThis"$2><span>$3</span></a>', wp_list_pages('echo=0&orderby=name&title_li=&exclude='.get_option('arclite_excludenav'))); } ?> [b]<li class="page_item page-item-3"><a class="fadeThis" href="http://www.linkhere.com" title="My Blog"><span>My Blog</span></a></li>[/b] </ul> </div> </div> <!-- /main navigation --> Code (markup): Hope that helps