twenty_twenty_one_svg_icons_social

twenty_twenty_one_svg_icons_social

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.3.2

apply_filters('twenty_twenty_one_svg_icons_social') is found 1 times:

  • /wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-svg-icons.php line 235
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    * @since Twenty Twenty-One 1.0
     *
     * @param array $social_icons Array of default social icons.
     */
    $social_icons = apply_filters( 'twenty_twenty_one_svg_icons_social', self::$social_icons );
     
    foreach ( array_keys( $social_icons ) as $icon ) {
        $domains            = array_key_exists( $icon, $map ) ? $map[ $icon ] : array( sprintf( '%s.com', $icon ) );
        $domains            = array_map( 'trim', $domains ); // Remove leading/trailing spaces, to prevent regex from failing to match.
        $domains            = array_map( 'preg_quote', $domains );
        $regex_map[ $icon ] = sprintf( '/(%s)/i', implode( '|', $domains ) );