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 |
|---|---|
| 135 | /** |
| 136 | * Filter the arguments for the Links widget. |
| 137 | * |
| 138 | * @since 2.6.0 |
| 139 | * |
| 140 | * @see wp_list_bookmarks() |
| 141 | * |
| 142 | * @param array $args An array of arguments to retrieve the links list. |
| 143 | */ |
| 144 | wp_list_bookmarks( apply_filters( 'widget_links_args', array( |
| 145 | 'title_before' => $before_title, 'title_after' => $after_title, |
| 146 | 'category_before' => $before_widget, 'category_after' => $after_widget, |
| 147 | 'show_images' => $show_images, 'show_description' => $show_description, |
| 148 | 'show_name' => $show_name, 'show_rating' => $show_rating, |
| 149 | 'category' => $category, 'class' => 'linkcat widget', |
| 150 | 'orderby' => $orderby, 'order' => $order, |
| 151 | 'limit' => $limit, |
| 152 | ) ) ); |
| 153 | } |