Changeset 8616 for trunk/wp-includes/rewrite.php
- Timestamp:
- 08/11/2008 08:17:07 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/rewrite.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/rewrite.php
r8600 r8616 448 448 449 449 if (empty($this->category_base)) 450 $this->category_base = 'category'; 451 $this->category_structure = trailingslashit( $this->front . $this->category_base ); 450 $this->category_structure = trailingslashit( $this->front . 'category' ); 451 else 452 $this->category_structure = trailingslashit( '/' . $this->root . $this->category_base ); 452 453 453 454 $this->category_structure .= '%category%'; … … 467 468 468 469 if (empty($this->tag_base)) 469 $this->tag_base = 'tag'; 470 $this->tag_structure = trailingslashit( $this->front . $this->tag_base ); 470 $this->tag_structure = trailingslashit( $this->front . 'tag' ); 471 else 472 $this->tag_structure = trailingslashit( '/' . $this->root . $this->tag_base ); 471 473 472 474 $this->tag_structure .= '%tag%';
Note: See TracChangeset
for help on using the changeset viewer.