Matt Kenefick
Contact Me Experiments Blog Portfolio

Posts Tagged ‘wordpress’

Disabling Wordpress’s “/feed/” link.

Friday, February 27th, 2009

If you want to override the “/feed/” link in Wordpress, there are a few steps to take. This was really annoying for me because I was trying to use it, but it’s not an .htaccess setting or anything like that.

Anyway, what you do is:

  1. Go into “wp-includes/template-loader.php”.
  2. Comment out TWO instances of the following code:
} else if ( is_feed() ) {
do_feed();
return;

Then you’re all set and the “/feed/” link is yours.