Title: Editing my theme
Last modified: August 19, 2016

---

# Editing my theme

 *  Resolved [billkoe](https://wordpress.org/support/users/billkoe/)
 * (@billkoe)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/editing-my-theme-3/)
 * I am using Fullscreen 1.2 as my theme on [my photo blog](http://koechlingphoto.com/photo-synthesis).
   Is it possible to add “subscribe” to the navigation php using the editor?

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [Devin Price](https://wordpress.org/support/users/downstairsdev/)
 * (@downstairsdev)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/editing-my-theme-3/#post-1232358)
 * Hi Billkoe. You simply need to add another item to the menu. Open your nav.php
   and put the following at before the close ul tag:
 * `<li><a href="<?php bloginfo('rss2_url'); ?>">Subscribe</a></li>`
 * Here’s what the whole thing should look like when you are finished:
 *     ```
       <!-- Navigation -->
         <div id="nav">
           <ul class="sf-menu">
             <li><a href="#">Categories</a>
               <ul>
       			<?php wp_list_categories('orderby=name&title_li='); ?>
               </ul>
             </li>
             <li><a href="#">Pages</a>
               <ul>
               	<?php wp_list_pages('orderby=name&title_li='); ?>
               </ul>
             </li>
             <li><a href="#">Contact</a>
               <ul>
                 <li><a href="#">1-800-867-5309</a></li>
                 <li><a href="mailto:you@email.com">you@email.com</a></li>
               </ul>
             </li>
             <li><a href="#">Search</a>
               <ul>
                 <li><?php if(function_exists('get_search_form')) : ?>
       				<?php get_search_form(); ?>
       				<?php else : ?>
       				<?php include (TEMPLATEPATH . '/searchform.php'); ?>
       				<?php endif; ?></li>
               </ul>
             </li>
             <li><a href="<?php bloginfo('rss2_url'); ?>">Subscribe</a></li>
           </ul>
         </div>
       ```
   
 *  [Devin Price](https://wordpress.org/support/users/downstairsdev/)
 * (@downstairsdev)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/editing-my-theme-3/#post-1232359)
 * Hi Billkoe. You simply need to add another item to the menu. Open your nav.php
   and put the following before the close ul tag:
 * `<li><a href="<?php bloginfo('rss2_url'); ?>">Subscribe</a></li>`
 * Here’s what the whole thing should look like when you are finished:
 *     ```
       <!-- Navigation -->
         <div id="nav">
           <ul class="sf-menu">
             <li><a href="#">Categories</a>
               <ul>
       			<?php wp_list_categories('orderby=name&title_li='); ?>
               </ul>
             </li>
             <li><a href="#">Pages</a>
               <ul>
               	<?php wp_list_pages('orderby=name&title_li='); ?>
               </ul>
             </li>
             <li><a href="#">Contact</a>
               <ul>
                 <li><a href="#">1-800-867-5309</a></li>
                 <li><a href="mailto:you@email.com">you@email.com</a></li>
               </ul>
             </li>
             <li><a href="#">Search</a>
               <ul>
                 <li><?php if(function_exists('get_search_form')) : ?>
       				<?php get_search_form(); ?>
       				<?php else : ?>
       				<?php include (TEMPLATEPATH . '/searchform.php'); ?>
       				<?php endif; ?></li>
               </ul>
             </li>
             <li><a href="<?php bloginfo('rss2_url'); ?>">Subscribe</a></li>
           </ul>
         </div>
       ```
   
 *  Thread Starter [billkoe](https://wordpress.org/support/users/billkoe/)
 * (@billkoe)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/editing-my-theme-3/#post-1232361)
 * Thanks… It worked perfectly!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Editing my theme’ is closed to new replies.

 * 3 replies
 * 2 participants
 * Last reply from: [billkoe](https://wordpress.org/support/users/billkoe/)
 * Last activity: [16 years, 7 months ago](https://wordpress.org/support/topic/editing-my-theme-3/#post-1232361)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
