Changeset 7574 for trunk/wp-includes/rewrite.php
- Timestamp:
- 03/30/2008 01:42:03 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/rewrite.php
r7563 r7574 794 794 795 795 //Default Feed rules - These are require to allow for the direct access files to work with permalink structure starting with %category% 796 $default_feeds = array( ' wp-atom.php$' => $this->index .'?feed=atom',797 ' wp-rdf.php$' => $this->index .'?feed=rdf',798 ' wp-rss.php$' => $this->index .'?feed=rss',799 ' wp-rss2.php$' => $this->index .'?feed=rss2',800 ' wp-feed.php$' => $this->index .'?feed=feed',801 ' wp-commentsrss2.php$' => $this->index . '?feed=rss2&withcomments=1');796 $default_feeds = array( '.*/wp-atom.php$' => $this->index .'?feed=atom', 797 '.*/wp-rdf.php$' => $this->index .'?feed=rdf', 798 '.*/wp-rss.php$' => $this->index .'?feed=rss', 799 '.*/wp-rss2.php$' => $this->index .'?feed=rss2', 800 '.*/wp-feed.php$' => $this->index .'?feed=feed', 801 '.*/wp-commentsrss2.php$' => $this->index . '?feed=rss2&withcomments=1'); 802 802 803 803 // Post
Note: See TracChangeset
for help on using the changeset viewer.