Changeset 53256
- Timestamp:
- 04/25/2022 01:03:15 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-user-query.php
r53255 r53256 125 125 126 126 /** 127 * Prepare the query variables.127 * Prepares the query variables. 128 128 * 129 129 * @since 3.1.0 … … 752 752 753 753 /** 754 * Execute the query, with the current variables.754 * Executes the query, with the current variables. 755 755 * 756 756 * @since 3.1.0 … … 835 835 836 836 /** 837 * Retrieve query variable.837 * Retrieves query variable. 838 838 * 839 839 * @since 3.5.0 … … 851 851 852 852 /** 853 * Set query variable.853 * Sets query variable. 854 854 * 855 855 * @since 3.5.0 … … 863 863 864 864 /** 865 * Used internally to generate an SQL string for searching across multiple columns 865 * Used internally to generate an SQL string for searching across multiple columns. 866 866 * 867 867 * @since 3.1.0 … … 895 895 896 896 /** 897 * Return the list of users.897 * Returns the list of users. 898 898 * 899 899 * @since 3.1.0 … … 906 906 907 907 /** 908 * Return the total number of users for the current query.908 * Returns the total number of users for the current query. 909 909 * 910 910 * @since 3.1.0 … … 917 917 918 918 /** 919 * Parse and sanitize'orderby' keys passed to the user query.919 * Parses and sanitizes 'orderby' keys passed to the user query. 920 920 * 921 921 * @since 4.2.0 … … 976 976 977 977 /** 978 * Parse an 'order' query variable and castit to ASC or DESC as necessary.978 * Parses an 'order' query variable and casts it to ASC or DESC as necessary. 979 979 * 980 980 * @since 4.2.0 … … 996 996 997 997 /** 998 * Make private properties readable for backward compatibility.998 * Makes private properties readable for backward compatibility. 999 999 * 1000 1000 * @since 4.0.0 … … 1010 1010 1011 1011 /** 1012 * Make private properties settable for backward compatibility.1012 * Makes private properties settable for backward compatibility. 1013 1013 * 1014 1014 * @since 4.0.0 … … 1025 1025 1026 1026 /** 1027 * Make private properties checkable for backward compatibility.1027 * Makes private properties checkable for backward compatibility. 1028 1028 * 1029 1029 * @since 4.0.0 … … 1039 1039 1040 1040 /** 1041 * Make private properties un-settable for backward compatibility.1041 * Makes private properties un-settable for backward compatibility. 1042 1042 * 1043 1043 * @since 4.0.0 … … 1052 1052 1053 1053 /** 1054 * Make private/protected methods readable for backward compatibility.1054 * Makes private/protected methods readable for backward compatibility. 1055 1055 * 1056 1056 * @since 4.0.0
Note: See TracChangeset
for help on using the changeset viewer.