Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_list_bookmarks

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
308      }
309
310      /**
311       * Filters the bookmarks list before it is echoed or returned.
312       *
313       * @since 2.5.0
314       *
315       * @param string $html The HTML list of bookmarks.
316       */
317      $html = apply_filters( 'wp_list_bookmarks', $output );
318
319      if ( $parsed_args['echo'] ) {
320           echo $html;
321      } else {
322           return $html;
323      }
324 }
325