Changeset 39638
- Timestamp:
- 12/27/2016 09:20:11 AM (8 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/author-template.php
r39600 r39638 183 183 * If the author has a home page set, return an HTML link, otherwise just return the 184 184 * author's name. 185 * 186 * @since 3.0.0 185 187 * 186 188 * @return string|null An HTML link if the author's url exist in user meta, … … 503 505 * Helper function to clear the cache for number of authors. 504 506 * 507 * @since 3.2.0 508 * 505 509 * @private 506 510 */ -
trunk/src/wp-includes/category-template.php
r39593 r39638 721 721 * Default topic count scaling for tag links 722 722 * 723 * @param int $count number of posts with that tag 724 * @return int scaled count 723 * @since 2.9.0 724 * 725 * @param int $count Number of posts with that tag. 726 * @return int Scaled count. 725 727 */ 726 728 function default_topic_count_scale( $count ) { -
trunk/src/wp-includes/functions.php
r39323 r39638 1922 1922 * A non-filtered, non-cached version of wp_upload_dir() that doesn't check the path. 1923 1923 * 1924 * @since 4.5.0 1924 1925 * @access private 1925 1926 * … … 5109 5110 * Test if a given path is a stream URL 5110 5111 * 5112 * @since 3.5.0 5113 * 5111 5114 * @param string $path The resource path or URL. 5112 5115 * @return bool True if the path is a stream URL. -
trunk/src/wp-includes/general-template.php
r39326 r39638 809 809 * Filters the site icon URL. 810 810 * 811 * @si te 4.4.0811 * @since 4.4.0 812 812 * 813 813 * @param string $url Site icon URL. -
trunk/src/wp-includes/kses.php
r38785 r39638 1450 1450 * numeric entities in hex form. 1451 1451 * 1452 * @since 2.7.0 1452 1453 * @access private 1453 1454 * … … 1465 1466 /** 1466 1467 * Helper function to determine if a Unicode value is valid. 1468 * 1469 * @since 2.7.0 1467 1470 * 1468 1471 * @param int $i Unicode value … … 1498 1501 * Regex callback for wp_kses_decode_entities() 1499 1502 * 1503 * @since 2.9.0 1504 * 1500 1505 * @param array $match preg match 1501 1506 * @return string … … 1507 1512 /** 1508 1513 * Regex callback for wp_kses_decode_entities() 1514 * 1515 * @since 2.9.0 1509 1516 * 1510 1517 * @param array $match preg match -
trunk/src/wp-includes/media.php
r39612 r39638 1045 1045 /** 1046 1046 * Let plugins pre-filter the image meta to be able to fix inconsistencies in the stored data. 1047 * 1048 * @since 4.5.0 1047 1049 * 1048 1050 * @param array $image_meta The image meta data as returned by 'wp_get_attachment_metadata()'. -
trunk/src/wp-includes/ms-functions.php
r39323 r39638 2243 2243 * Update the network-wide counts for the current network. 2244 2244 * 2245 * 2245 * @since 3.1.0 2246 2246 */ 2247 2247 function wp_update_network_counts() { -
trunk/src/wp-includes/nav-menu.php
r38928 r39638 97 97 * Unregisters a navigation menu location for a theme. 98 98 * 99 * @since 3.1.0 99 100 * @global array $_wp_registered_nav_menus 100 101 * -
trunk/src/wp-includes/rest-api.php
r39400 r39638 988 988 /** 989 989 * Validate a value based on a schema. 990 * 991 * @since 4.7.0 990 992 * 991 993 * @param mixed $value The value to validate. … … 1111 1113 * Sanitize a value based on a schema. 1112 1114 * 1115 * @since 4.7.0 1116 * 1113 1117 * @param mixed $value The value to sanitize. 1114 1118 * @param array $args Schema array to use for sanitization. -
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
r39621 r39638 1518 1518 * "Protected: %s", as the REST API communicates the protected status of a post 1519 1519 * in a machine readable format, we remove the "Protected: " prefix. 1520 * 1521 * @since 4.7.0 1520 1522 * 1521 1523 * @return string Protected title format. -
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php
r39106 r39638 306 306 * provide a wrapper sanitizer to whitelist the use of `null`. 307 307 * 308 * @since 4.7.0 309 * 308 310 * @param mixed $value The value for the setting. 309 311 * @param WP_REST_Request $request The request object. -
trunk/src/wp-includes/vars.php
r38468 r39638 121 121 * Test if the current browser runs on a mobile device (smart phone, tablet, etc.) 122 122 * 123 * @since 3.4.0 124 * 123 125 * @return bool 124 126 */
Note: See TracChangeset
for help on using the changeset viewer.