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
258      }
259
260      /**
261       * Filter the bookmarks list before it is echoed or returned.
262       *
263       * @since 2.5.0
264       *
265       * @param string $output The HTML list of bookmarks.
266       */
267      $output = apply_filters( 'wp_list_bookmarks', $output );
268
269      if ( !$echo )
270           return $output;
271      echo $output;
272 }
273