Changeset 49184 for trunk/src/wp-includes/class-wp-rewrite.php
- Timestamp:
- 10/17/2020 04:24:35 PM (5 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-rewrite.php (modified) (21 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-rewrite.php
r49131 r49184 46 46 * @var string 47 47 */ 48 var$author_base = 'author';48 public $author_base = 'author'; 49 49 50 50 /** … … 54 54 * @var string 55 55 */ 56 var$author_structure;56 public $author_structure; 57 57 58 58 /** … … 62 62 * @var string 63 63 */ 64 var$date_structure;64 public $date_structure; 65 65 66 66 /** … … 70 70 * @var string 71 71 */ 72 var$page_structure;72 public $page_structure; 73 73 74 74 /** … … 78 78 * @var string 79 79 */ 80 var$search_base = 'search';80 public $search_base = 'search'; 81 81 82 82 /** … … 86 86 * @var string 87 87 */ 88 var$search_structure;88 public $search_structure; 89 89 90 90 /** … … 94 94 * @var string 95 95 */ 96 var$comments_base = 'comments';96 public $comments_base = 'comments'; 97 97 98 98 /** … … 110 110 * @var string 111 111 */ 112 var$comments_pagination_base = 'comment-page';112 public $comments_pagination_base = 'comment-page'; 113 113 114 114 /** … … 118 118 * @var string 119 119 */ 120 var$feed_base = 'feed';120 public $feed_base = 'feed'; 121 121 122 122 /** … … 126 126 * @var string 127 127 */ 128 var$comment_feed_structure;128 public $comment_feed_structure; 129 129 130 130 /** … … 134 134 * @var string 135 135 */ 136 var$feed_structure;136 public $feed_structure; 137 137 138 138 /** … … 179 179 * @var string 180 180 */ 181 var$matches = '';181 public $matches = ''; 182 182 183 183 /** … … 187 187 * @var array 188 188 */ 189 var$rules;189 public $rules; 190 190 191 191 /** … … 197 197 * @var array 198 198 */ 199 var$extra_rules = array();199 public $extra_rules = array(); 200 200 201 201 /** … … 207 207 * @var array 208 208 */ 209 var$extra_rules_top = array();209 public $extra_rules_top = array(); 210 210 211 211 /** … … 218 218 * @var array 219 219 */ 220 var$non_wp_rules = array();220 public $non_wp_rules = array(); 221 221 222 222 /** … … 226 226 * @var array 227 227 */ 228 var$extra_permastructs = array();228 public $extra_permastructs = array(); 229 229 230 230 /** … … 234 234 * @var array 235 235 */ 236 var$endpoints;236 public $endpoints; 237 237 238 238 /** … … 278 278 * @var array 279 279 */ 280 var$rewritecode = array(280 public $rewritecode = array( 281 281 '%year%', 282 282 '%monthnum%', … … 299 299 * @var array 300 300 */ 301 var$rewritereplace = array(301 public $rewritereplace = array( 302 302 '([0-9]{4})', 303 303 '([0-9]{1,2})', … … 319 319 * @var array 320 320 */ 321 var$queryreplace = array(321 public $queryreplace = array( 322 322 'year=', 323 323 'monthnum=',
Note: See TracChangeset
for help on using the changeset viewer.