<?php

/*
Plugin Name: My Atom 
Plugin Author: Shelley Powers
Description: Resets location for Atom feed. Can be adjusted for any feed by adjusting both the remove and add action and adding approp functions
Version: 1.0
 */

function do_my_feed_atom($for_comments) {
       
$theme 'graphics';
        if (
$for_comments) {
                
load_template(ABSPATH 'wp-content/themes/' $theme '/feed-atom-comments.php');
        } else {
                
load_template(ABSPATH 'wp-content/themes/' $theme '/feed-atom.php');
        }
}

remove_action('do_feed_atom','do_feed_atom');
add_action('do_feed_atom''do_my_feed_atom'101);

?>