site_icon_meta_tags

site_icon_meta_tags

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

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('site_icon_meta_tags') is found 1 times:

  • /wp-includes/general-template.php line 3466
    3462
    3463
    3464
    3465
    3466
    3467
    3468
    3469
    3470
    3471
    3472
         * @since 4.3.0
         *
         * @param string[] $meta_tags Array of Site Icon meta tags.
         */
        $meta_tags = apply_filters( 'site_icon_meta_tags', $meta_tags );
        $meta_tags = array_filter( $meta_tags );
     
        foreach ( $meta_tags as $meta_tag ) {
            echo "$meta_tag\n";
        }
    }