Changeset 50340 for trunk/src/wp-includes/rest-api.php
- Timestamp:
- 02/13/2021 03:15:00 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api.php
r50234 r50340 386 386 * @global WP_Rewrite $wp_rewrite WordPress rewrite component. 387 387 * 388 * @param int 389 * @param string $path Optional. REST route. Default '/'.390 * @param string $scheme Optional. Sanitization scheme. Default 'rest'.388 * @param int|null $blog_id Optional. Blog ID. Default of null returns URL for current blog. 389 * @param string $path Optional. REST route. Default '/'. 390 * @param string $scheme Optional. Sanitization scheme. Default 'rest'. 391 391 * @return string Full URL to the endpoint. 392 392 */ … … 442 442 * @since 4.4.0 443 443 * 444 * @param string $url REST URL.445 * @param string $path REST route.446 * @param int 447 * @param string $scheme Sanitization scheme.444 * @param string $url REST URL. 445 * @param string $path REST route. 446 * @param int|null $blog_id Blog ID. 447 * @param string $scheme Sanitization scheme. 448 448 */ 449 449 return apply_filters( 'rest_url', $url, $path, $blog_id, $scheme );
Note: See TracChangeset
for help on using the changeset viewer.