Advertisement
chrishajer

events feed returns 404 not 200

Sep 22nd, 2011
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <?php
  2. // use the template file feed-events.php
  3. function create_events_feed() {
  4.     locate_template(array('/feed-events.php'), true);
  5. }
  6.  
  7. add_feed('events', 'create_events_feed');
  8.  
  9. // at this point, the feed is available at
  10. // http://townconnection.com/nome-alaska/?feed=events
  11. // and
  12. // http://townconnection.com/nome-alaska/feed/events
  13. // but still returns a 404
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement