From 1fbf72ada3a422281ec72d5319fb294678e31d00 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 13 Feb 2008 18:47:34 +0000 Subject: [PATCH] Add wp_list_bookmarks filter. Props codealsatian. fixes #5532 git-svn-id: https://develop.svn.wordpress.org/trunk@6822 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/bookmark-template.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wp-includes/bookmark-template.php b/wp-includes/bookmark-template.php index 62e62a11a6..2c56e5ad37 100644 --- a/wp-includes/bookmark-template.php +++ b/wp-includes/bookmark-template.php @@ -201,6 +201,8 @@ function wp_list_bookmarks($args = '') { } } + $output = apply_filters( "wp_list_bookmarks", $output ); + if ( !$echo ) return $output; echo $output;