Title: squareink's Replies | WordPress.org

---

# squareink

  [  ](https://wordpress.org/support/users/squareink/)

 *   [Profile](https://wordpress.org/support/users/squareink/)
 *   [Topics Started](https://wordpress.org/support/users/squareink/topics/)
 *   [Replies Created](https://wordpress.org/support/users/squareink/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/squareink/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/squareink/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/squareink/engagements/)
 *   [Favorites](https://wordpress.org/support/users/squareink/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Changing the blog description in the header to be e-mail hyperlink](https://wordpress.org/support/topic/changing-the-blog-info-in-the-header-to-be-e-mail-hyperlink/)
 *  Thread Starter [squareink](https://wordpress.org/support/users/squareink/)
 * (@squareink)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/changing-the-blog-info-in-the-header-to-be-e-mail-hyperlink/#post-1093951)
 * didn’t work either. I’ll just go with the hard coded way instead. Wont be much
   changing of themes/ updates etc on this website anyway.
 * Thanks for trying though!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Changing the blog description in the header to be e-mail hyperlink](https://wordpress.org/support/topic/changing-the-blog-info-in-the-header-to-be-e-mail-hyperlink/)
 *  Thread Starter [squareink](https://wordpress.org/support/users/squareink/)
 * (@squareink)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/changing-the-blog-info-in-the-header-to-be-e-mail-hyperlink/#post-1093947)
 * oops sorry guys, didn’t see the reply before I posted my last comment! I’ll try
   to change the code and see if it works.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Changing the blog description in the header to be e-mail hyperlink](https://wordpress.org/support/topic/changing-the-blog-info-in-the-header-to-be-e-mail-hyperlink/)
 *  Thread Starter [squareink](https://wordpress.org/support/users/squareink/)
 * (@squareink)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/changing-the-blog-info-in-the-header-to-be-e-mail-hyperlink/#post-1093945)
 * If someone does know what I did wrong or another way of doing it, then please
   let me know but for now I am just going to replace the php function with manually
   written code within that div instead.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Changing the blog description in the header to be e-mail hyperlink](https://wordpress.org/support/topic/changing-the-blog-info-in-the-header-to-be-e-mail-hyperlink/)
 *  Thread Starter [squareink](https://wordpress.org/support/users/squareink/)
 * (@squareink)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/changing-the-blog-info-in-the-header-to-be-e-mail-hyperlink/#post-1093942)
 * it didn’t work. I got a Parse error: syntax error, unexpected T_STRING
 * and yes, I’ve entered only an e-mail address.
 * It is the tag line it is linking to if that makes it more clear. And I am also
   using the autofocus theme.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Customise the Password Protect to include an image](https://wordpress.org/support/topic/customise-the-passwor-protect-to-include-an-image/)
 *  Thread Starter [squareink](https://wordpress.org/support/users/squareink/)
 * (@squareink)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/customise-the-passwor-protect-to-include-an-image/#post-1089850)
 * ok thank you. I will have a look at that. 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How do I remove RSS Feed and Comments from header?](https://wordpress.org/support/topic/how-do-i-remove-rss-feed-and-comments-from-header/)
 *  [squareink](https://wordpress.org/support/users/squareink/)
 * (@squareink)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/how-do-i-remove-rss-feed-and-comments-from-header/#post-778728)
 * Hi
 * I tried this (using autofocus theme) and it doesn’t remove it for me… I have 
   however found where the rss code is:
 *     ```
       function sandbox_globalnav() {
       	echo '<div id="menu"><ul><li class="page_item"></li>';
           $menu = wp_list_pages('title_li=&sort_column=menu_order&echo=0'); // Params for the page list in header.php
           echo str_replace(array("\r", "\n", "\t"), '', $menu);
       	echo '<li class="page_item"><a href="'. get_bloginfo_rss('rss2_url') .'">RSS</a></li></ul></div>';
       }
       ```
   
 * Any ideas of what to comment out/ delete/ move? as I’ve tried a few things but
   not very good with the php code…
 * many thanks!
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [How to remove RSS in top nav?](https://wordpress.org/support/topic/how-to-remove-rss-in-top-nav/)
 *  [squareink](https://wordpress.org/support/users/squareink/)
 * (@squareink)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/how-to-remove-rss-in-top-nav/#post-1080405)
 * The RSS link is within the same code. Look at line 417:
 * `echo '<li class="page_item"><a href="'. get_bloginfo_rss('rss2_url') .'">RSS
   </a></li></ul></div>';`
 * I am currently trying to remove it myself but I am crap at php and can not get
   it to work properly. I can remove it by commenting the whole line out but then
   I am also commenting out the and </div>… I’ve tried to move those two up but 
   with not much luck…
 * The full bit of code is:
 *     ```
       function sandbox_globalnav() {
       	echo '<div id="menu"><ul><li class="page_item"></li>';
           $menu = wp_list_pages('title_li=&sort_column=menu_order&echo=0'); // Params for the page list in header.php
           echo str_replace(array("\r", "\n", "\t"), '', $menu);
       	echo '<li class="page_item"><a href="'. get_bloginfo_rss('rss2_url') .'">RSS</a></li></ul></div>';
       }
       ```
   
 * and if someone can tell me exactly what to comment out/ delete / move I’d be 
   very greatful!
 * Cheers!

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