Changeset 21926 for trunk/wp-includes/general-template.php
- Timestamp:
- 09/20/2012 01:52:36 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/general-template.php
r21904 r21926 148 148 * @since 2.7.0 149 149 * @param boolean $echo Default to echo and not return the form. 150 * @return string|null String when retrieving, null when displaying or if searchform.php exists. 150 151 */ 151 152 function get_search_form($echo = true) { … … 182 183 * @param string $redirect Optional path to redirect to on login/logout. 183 184 * @param boolean $echo Default to echo and not return the link. 185 * @return string|null String when retrieving, null when displaying. 184 186 */ 185 187 function wp_loginout($redirect = '', $echo = true) { … … 206 208 * 207 209 * @param string $redirect Path to redirect to on logout. 210 * @return string A log out URL. 208 211 */ 209 212 function wp_logout_url($redirect = '') { … … 230 233 * @param string $redirect Path to redirect to on login. 231 234 * @param bool $force_reauth Whether to force reauthorization, even if a cookie is present. Default is false. 232 * @return string A log in url235 * @return string A log in URL. 233 236 */ 234 237 function wp_login_url($redirect = '', $force_reauth = false) { … … 249 252 * 250 253 * @since 3.0.0 251 * @param array $args Configuration options to modify the form output 252 * @return Void, or string containing the form254 * @param array $args Configuration options to modify the form output. 255 * @return string|null String when retrieving, null when displaying. 253 256 */ 254 257 function wp_login_form( $args = array() ) { … … 306 309 * 307 310 * @param string $redirect Path to redirect to on login. 311 * @return string Lost password URL. 308 312 */ 309 313 function wp_lostpassword_url( $redirect = '' ) { … … 329 333 * @param string $after Text to output after the link (defaults to </li>). 330 334 * @param boolean $echo Default to echo and not return the link. 335 * @return string|null String when retrieving, null when displaying. 331 336 */ 332 337 function wp_register( $before = '<li>', $after = '</li>', $echo = true ) { … … 862 867 * 863 868 * @param string|array $args Optional. Override defaults. 869 * @return string|null String when retrieving, null when displaying. 864 870 */ 865 871 function wp_get_archives($args = '') { … … 1063 1069 * @param bool $initial Optional, default is true. Use initial calendar names. 1064 1070 * @param bool $echo Optional, default is true. Set to false for return. 1071 * @return string|null String when retrieving, null when displaying. 1065 1072 */ 1066 1073 function get_calendar($initial = true, $echo = true) { … … 2256 2263 * @access private 2257 2264 * 2258 * @param any$helper One of the values to compare2259 * @param any$current (true) The other value to compare if not just true2265 * @param mixed $helper One of the values to compare 2266 * @param mixed $current (true) The other value to compare if not just true 2260 2267 * @param bool $echo Whether to echo or just return the string 2261 2268 * @param string $type The type of checked|selected|disabled we are doing
Note: See TracChangeset
for help on using the changeset viewer.