wp_list_bookmarks хук-фильтр . WP 2.5.0
Filters the bookmarks list before it is echoed or returned.
Использование
add_filter( 'wp_list_bookmarks', 'filter_function_name_1036' ); function filter_function_name_1036( $html ){ // filter... return $html; }
- $html(строка)
- The HTML list of bookmarks.
Список изменений
С версии 2.5.0 | Введена. |
Где вызывается хук
wp_list_bookmarks
wp-includes/bookmark-template.php 317
$html = apply_filters( 'wp_list_bookmarks', $output );