Changeset 47060 for trunk/src/wp-includes/author-template.php
- Timestamp:
- 01/11/2020 06:30:58 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/author-template.php
r46290 r47060 408 408 * @type array|string $include Array or comma/space-separated list of author IDs to include. Default empty. 409 409 * } 410 * @return string|void The output, if echo is set tofalse.410 * @return void|string Void if 'echo' argument is true, list of authors if 'echo' is false. 411 411 */ 412 412 function wp_list_authors( $args = '' ) { … … 519 519 $return = rtrim( $return, ', ' ); 520 520 521 if ( ! $args['echo'] ) { 521 if ( $args['echo'] ) { 522 echo $return; 523 } else { 522 524 return $return; 523 525 } 524 echo $return;525 526 } 526 527
Note: See TracChangeset
for help on using the changeset viewer.