Changeset 46826
- Timestamp:
- 12/07/2019 01:21:07 PM (5 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/nav-menu.php
r46821 r46826 971 971 * 972 972 * @param object $object The post type or taxonomy meta-object. 973 * @return object The post type o ftaxonomy object.973 * @return object The post type or taxonomy object. 974 974 */ 975 975 function _wp_nav_menu_meta_box_object( $object = null ) { -
trunk/src/wp-admin/includes/post.php
r46823 r46826 16 16 * @param bool $update Are we updating a pre-existing post? 17 17 * @param array $post_data Array of post data. Defaults to the contents of $_POST. 18 * @return object|bool WP_Error on failure, true on success.18 * @return array|WP_Error Array of post data on success, WP_Error on failure. 19 19 */ 20 20 function _wp_translate_postdata( $update = false, $post_data = null ) { … … 202 202 * 203 203 * @param array $post_data Array of post data. Defaults to the contents of $_POST. 204 * @return object|bool WP_Error on failure, true on success.204 * @return array|WP_Error Array of post data on success, WP_Error on failure. 205 205 */ 206 206 function _wp_get_allowed_postdata( $post_data = null ) { -
trunk/src/wp-admin/includes/screen.php
r46662 r46826 49 49 * 50 50 * @param string|WP_Screen $screen The screen you want the hidden columns for 51 * @return array51 * @return string[] Array of IDs of hidden columns. 52 52 */ 53 53 function get_hidden_columns( $screen ) { … … 68 68 * @since 4.4.0 69 69 * 70 * @param array $hidden An arrayof columns hidden by default.70 * @param string[] $hidden Array of IDs of columns hidden by default. 71 71 * @param WP_Screen $screen WP_Screen object of the current screen. 72 72 */ … … 80 80 * @since 4.4.1 Added the `use_defaults` parameter. 81 81 * 82 * @param array $hidden An arrayof hidden columns.83 * @param WP_Screen $screen WP_Screen object of the current screen.82 * @param string[] $hidden Array of IDs of hidden columns. 83 * @param WP_Screen $screen WP_Screen object of the current screen. 84 84 * @param bool $use_defaults Whether to show the default columns. 85 85 */ -
trunk/src/wp-admin/includes/user.php
r46804 r46826 552 552 * @since 2.7.0 553 553 * 554 * @param object$user User data object.554 * @param WP_User $user User data object. 555 555 */ 556 556 function use_ssl_preference( $user ) {
Note: See TracChangeset
for help on using the changeset viewer.