I have only been working with WordPress for a couple weeks, am moderately familiar with html code, but new to php code.
I want to remove all references to RSS on my site (http://2012-101.info). I have successfully "commented out" several references, but have been unable to get rid of the "Entries RSS" and "Comments RSS" lines in the Meta widget in the Magicube theme sidebar. I have tried "commenting out" any line referring to RSS, in the sidebar.php; but nothing happens. Where else could I look, or what else might I do.
thanks,
Tom
SpaceDogDeveloper
Member
Posted 1 year ago #
Those links are usually generated by the wp_meta function in the sidebar.php file
`<?php wp_meta(); ?>
To change it, you'll have to create a custom function by overriding it in your functions.php file, or you can just remove that call (which, in turn, will also remove the "Log In" & WordPress.org links).
Thanks for the suggestion.
Creating a custom function is beyond my ability. I know how to remove the entire meta widget, and will do that as a last resort, but I find the "Site Admin" and "Log out" links handy.