Changeset 53189
- Timestamp:
- 04/15/2022 03:12:11 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/author-template.php
r53188 r53189 12 12 13 13 /** 14 * Retrieve the author of the current post.14 * Retrieves the author of the current post. 15 15 * 16 16 * @since 1.5.0 … … 39 39 40 40 /** 41 * Display the name of the author of the current post.41 * Displays the name of the author of the current post. 42 42 * 43 43 * The behavior of this function is based off of old functionality predating … … 83 83 84 84 /** 85 * Retrieve the author who last edited the current post.85 * Retrieves the author who last edited the current post. 86 86 * 87 87 * @since 2.8.0 … … 107 107 108 108 /** 109 * Display the name of the author who last edited the current post,109 * Displays the name of the author who last edited the current post, 110 110 * if the author's ID is available. 111 111 * … … 205 205 206 206 /** 207 * The value of the requested user metadata.207 * Filters the value of the requested user metadata. 208 208 * 209 209 * The filter name is dynamic and depends on the $field parameter of the function. … … 218 218 219 219 /** 220 * Retrieve either author's link or author's name.220 * Retrieves either author's link or author's name. 221 221 * 222 222 * If the author has a home page set, return an HTML link, otherwise just return the … … 261 261 262 262 /** 263 * Display either author's link or author's name.263 * Displays either author's link or author's name. 264 264 * 265 265 * If the author has a home page set, echo an HTML link, otherwise just echo the … … 275 275 276 276 /** 277 * Retrieve the number of posts by the author of the current post.277 * Retrieves the number of posts by the author of the current post. 278 278 * 279 279 * @since 1.5.0 … … 290 290 291 291 /** 292 * Display the number of posts by the author of the current post.292 * Displays the number of posts by the author of the current post. 293 293 * 294 294 * @link https://developer.wordpress.org/reference/functions/the_author_posts/ … … 350 350 351 351 /** 352 * Retrieve the URL to the author page for the user with the ID provided.352 * Retrieves the URL to the author page for the user with the ID provided. 353 353 * 354 354 * @since 2.1.0 … … 395 395 396 396 /** 397 * List all the authors of the site, with several options available.397 * Lists all the authors of the site, with several options available. 398 398 * 399 399 * @link https://developer.wordpress.org/reference/functions/wp_list_authors/
Note: See TracChangeset
for help on using the changeset viewer.