Changeset 39639
- Timestamp:
- 12/27/2016 09:27:38 AM (8 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/category-template.php
r39638 r39639 719 719 720 720 /** 721 * Default topic count scaling for tag links 721 * Default topic count scaling for tag links. 722 722 * 723 723 * @since 2.9.0 -
trunk/src/wp-includes/functions.php
r39638 r39639 5393 5393 * @since 2.1.0 5394 5394 * 5395 * @param string $ mediumPath to the file to delete.5395 * @param string $file Path to the file to delete. 5396 5396 */ 5397 5397 $delete = apply_filters( 'wp_delete_file', $file ); -
trunk/src/wp-includes/general-template.php
r39638 r39639 3546 3546 * 3547 3547 * @since 2.3.0 3548 * 3549 * @param string $file Style handle name or filename (without ".css" extension)3550 * relative to wp-admin/. Defaults to 'wp-admin'.3548 * @param string $stylesheet_link HTML link element for the stylesheet. 3549 * @param string $file Style handle name or filename (without ".css" extension) 3550 * relative to wp-admin/. Defaults to 'wp-admin'. 3551 3551 */ 3552 3552 echo apply_filters( 'wp_admin_css', "<link rel='stylesheet' href='" . esc_url( wp_admin_css_uri( $file ) ) . "' type='text/css' />\n", $file ); -
trunk/src/wp-includes/link-template.php
r39589 r39639 847 847 * @param string $link The taxonomy feed link. 848 848 * @param string $feed Feed type. 849 * @param string $ feedThe taxonomy name.849 * @param string $taxonomy The taxonomy name. 850 850 */ 851 851 $link = apply_filters( 'taxonomy_feed_link', $link, $feed, $taxonomy ); … … 3584 3584 * @since 4.6.0 3585 3585 * 3586 * @param string $ stringThe post's canonical URL.3587 * @param WP_Post $post Post object.3586 * @param string $canonical_url The post's canonical URL. 3587 * @param WP_Post $post Post object. 3588 3588 */ 3589 3589 return apply_filters( 'get_canonical_url', $canonical_url, $post ); -
trunk/src/wp-includes/media-template.php
r39213 r39639 762 762 > 763 763 <?php 764 / / This filter is documented in wp-admin/includes/media.php764 /** This filter is documented in wp-admin/includes/media.php */ 765 765 $size_names = apply_filters( 'image_size_names_choose', array( 766 766 'thumbnail' => __( 'Thumbnail' ), -
trunk/src/wp-includes/ms-functions.php
r39638 r39639 2241 2241 2242 2242 /** 2243 * 2243 * Update the network-wide counts for the current network. 2244 2244 * 2245 2245 * @since 3.1.0 -
trunk/src/wp-includes/pluggable.php
r39326 r39639 2413 2413 * user email, WP_User object, WP_Post object, or WP_Comment object. 2414 2414 * @param int $size Square avatar width and height in pixels to retrieve. 2415 * @param string $alt Alternative text to use in the avatar image tag. 2416 * Default empty. 2415 * @param string $default URL for the default image or a default type. Accepts '404', 'retro', 'monsterid', 2416 * 'wavatar', 'indenticon','mystery' (or 'mm', or 'mysteryman'), 'blank', or 'gravatar_default'. 2417 * Default is the value of the 'avatar_default' option, with a fallback of 'mystery'. 2418 * @param string $alt Alternative text to use in the avatar image tag. Default empty. 2417 2419 * @param array $args Arguments passed to get_avatar_data(), after processing. 2418 2420 */ -
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php
r39621 r39639 1594 1594 * 1595 1595 * @since 4.7.0 1596 * @access public 1596 1597 * 1597 1598 * @param string $value Author email value submitted. -
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
r39638 r39639 1167 1167 * 1168 1168 * @since 4.7.0 1169 * @access protected 1169 1170 * 1170 1171 * @param WP_REST_Request $request The request object with post and terms data. … … 1520 1521 * 1521 1522 * @since 4.7.0 1523 * @access public 1522 1524 * 1523 1525 * @return string Protected title format. -
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php
r39638 r39639 307 307 * 308 308 * @since 4.7.0 309 * @access public 309 310 * 310 311 * @param mixed $value The value for the setting. -
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php
r39621 r39639 143 143 * 144 144 * @since 4.7.0 145 * @access public 145 146 * 146 147 * @param int|bool $value The value passed to the reassign parameter. … … 1055 1056 * 1056 1057 * @since 4.7.0 1058 * @access public 1057 1059 * 1058 1060 * @param mixed $value The username submitted in the request. … … 1084 1086 * 1085 1087 * @since 4.7.0 1088 * @access public 1086 1089 * 1087 1090 * @param mixed $value The password submitted in the request. -
trunk/src/wp-includes/taxonomy.php
r39578 r39639 2944 2944 * 2945 2945 * @param array $object_ids An array of object IDs. 2946 * @param string $obje t_type Object type.2946 * @param string $object_type Object type. 2947 2947 */ 2948 2948 do_action( 'clean_object_term_cache', $object_ids, $object_type );
Note: See TracChangeset
for help on using the changeset viewer.