twentytwenty_svg_icons_social

twentytwenty_svg_icons_social

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.0.3

apply_filters('twentytwenty_svg_icons_social') is found 1 times:

  • /wp-content/themes/twentytwenty/classes/class-twentytwenty-svg-icons.php line 104
    				 * @since Twenty Twenty 1.5
    				 *
    				 * @param array $social_icons Array of default social icons.
    				 */
    				$social_icons = apply_filters( 'twentytwenty_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 ) );