Changeset 44616
- Timestamp:
- 01/16/2019 05:53:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/author-template.php
r44503 r44616 289 289 * @global object $authordata The current author's DB object. 290 290 * 291 * @return string An HTML link to the author page .291 * @return string An HTML link to the author page, or an empty string if $authordata isn't defined. 292 292 */ 293 293 function get_the_author_posts_link() { 294 294 global $authordata; 295 295 if ( ! is_object( $authordata ) ) { 296 return ;296 return ''; 297 297 } 298 298
Note: See TracChangeset
for help on using the changeset viewer.