Changeset 31459 for trunk/src/wp-includes/rewrite.php
- Timestamp:
- 02/14/2015 03:47:02 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rewrite.php
r31126 r31459 505 505 506 506 /** 507 * Comments pagination permalink base. 508 * 509 * @since 4.2.0 510 * @access private 511 * @var string 512 */ 513 var $comments_pagination_base = 'comment-page'; 514 515 /** 507 516 * Feed permalink base. 508 517 * … … 1257 1266 $trackbackregex = 'trackback/?$'; 1258 1267 $pageregex = $this->pagination_base . '/?([0-9]{1,})/?$'; 1259 $commentregex = 'comment-page-([0-9]{1,})/?$';1268 $commentregex = $this->comments_pagination_base . '-([0-9]{1,})/?$'; 1260 1269 1261 1270 //build up an array of endpoint regexes to append => queries to append
Note: See TracChangeset
for help on using the changeset viewer.