wp_list_bookmarks

wp_list_bookmarks

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_list_bookmarks') is found 1 times:

  • /wp-includes/bookmark-template.php line 329
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    * @since 2.5.0
     *
     * @param string $html The HTML list of bookmarks.
     */
    $html = apply_filters( 'wp_list_bookmarks', $output );
     
    if ( $parsed_args['echo'] ) {
        echo $html;
    } else {
        return $html;
    }