Changeset 47060 for trunk/src/wp-includes/bookmark-template.php
- Timestamp:
- 01/11/2020 06:30:58 PM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/bookmark-template.php
r45932 r47060 203 203 * Default 'ASC'. 204 204 * } 205 * @return string|void Will only return if echo option is set to not echo. Default is not return anything.205 * @return void|string Void if 'echo' argument is true, HTML list of bookmarks if 'echo' is false. 206 206 */ 207 207 function wp_list_bookmarks( $args = '' ) { … … 317 317 $html = apply_filters( 'wp_list_bookmarks', $output ); 318 318 319 if ( ! $parsed_args['echo'] ) { 319 if ( $parsed_args['echo'] ) { 320 echo $html; 321 } else { 320 322 return $html; 321 323 } 322 echo $html;323 324 }
Note: See TracChangeset
for help on using the changeset viewer.