WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
743 | * |
744 | * @since 2.2.0 |
745 | * |
746 | * @param array $args Widget arguments. |
747 | */ |
748 | function wp_widget_links($args) { |
749 | extract($args, EXTR_SKIP); |
750 |
|
751 | $before_widget = preg_replace('/id="[^"]*"/','id="%id"', $before_widget); |
752 | wp_list_bookmarks(apply_filters('widget_links_args', array( |
753 | 'title_before' => $before_title, 'title_after' => $after_title, |
754 | 'category_before' => $before_widget, 'category_after' => $after_widget, |
755 | 'show_images' => true, 'class' => 'linkcat widget' |
756 | ))); |
757 | } |
758 |
|
759 | /** |
760 | * Display search widget. |
761 | * |