Changeset 3791 for trunk/wp-includes/rewrite.php
- Timestamp:
- 05/22/2006 10:06:06 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/rewrite.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/rewrite.php
r3712 r3791 697 697 } 698 698 699 // robots.txt 700 $robots_rewrite = array('robots.txt$' => $this->index . '?robots=1'); 701 699 702 // Post 700 703 $post_rewrite = $this->generate_rewrite_rules($this->permalink_structure, EP_PERMALINK); … … 731 734 732 735 // Put them together. 733 $this->rules = array_merge($ page_rewrite, $root_rewrite, $comments_rewrite, $search_rewrite, $category_rewrite, $author_rewrite, $date_rewrite, $post_rewrite, $this->extra_rules);736 $this->rules = array_merge($robots_rewrite, $page_rewrite, $root_rewrite, $comments_rewrite, $search_rewrite, $category_rewrite, $author_rewrite, $date_rewrite, $post_rewrite, $this->extra_rules); 734 737 735 738 do_action('generate_rewrite_rules', array(&$this));
Note: See TracChangeset
for help on using the changeset viewer.