Changeset 51330
- Timestamp:
- 07/05/2021 03:46:40 PM (3 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/user-edit.php
r51086 r51330 553 553 * 554 554 * The dynamic portion of the filter hook, `$name`, refers to 555 * each of the keys in the contact methods array.555 * each of the keys in the contact methods array. 556 556 * 557 557 * @since 2.9.0 558 558 * 559 * @param string $desc The translatable label for the contact method.559 * @param string $desc The translatable label for the contact method. 560 560 */ 561 561 echo apply_filters( "user_{$name}_label", $desc ); -
trunk/src/wp-includes/class-wp-rewrite.php
r51327 r51330 1316 1316 * Filters rewrite rules used for date archives. 1317 1317 * 1318 * Likely date archives would include /yyyy/, /yyyy/mm/, and /yyyy/mm/dd/.1318 * Likely date archives would include `/yyyy/`, `/yyyy/mm/`, and `/yyyy/mm/dd/`. 1319 1319 * 1320 1320 * @since 1.5.0 … … 1331 1331 * 1332 1332 * Likely root-level archives would include pagination rules for the homepage 1333 * as well as site-wide post feeds (e.g. /feed/, and /feed/atom/).1333 * as well as site-wide post feeds (e.g. `/feed/`, and `/feed/atom/`). 1334 1334 * 1335 1335 * @since 1.5.0 … … 1345 1345 * Filters rewrite rules used for comment feed archives. 1346 1346 * 1347 * Likely comments feed archives include /comments/feed/, and /comments/feed/atom/.1347 * Likely comments feed archives include `/comments/feed/` and `/comments/feed/atom/`. 1348 1348 * 1349 1349 * @since 1.5.0 … … 1360 1360 * Filters rewrite rules used for search archives. 1361 1361 * 1362 * Likely search-related archives include /search/search+query/as well as1362 * Likely search-related archives include `/search/search+query/` as well as 1363 1363 * pagination and feed paths for a search. 1364 1364 * … … 1375 1375 * Filters rewrite rules used for author archives. 1376 1376 * 1377 * Likely author archives would include /author/author-name/, as well as1377 * Likely author archives would include `/author/author-name/`, as well as 1378 1378 * pagination and feed paths for author archives. 1379 1379 *
Note: See TracChangeset
for help on using the changeset viewer.