jetpack_social_media_icons_widget_array, $html

jetpack_social_media_icons_widget_array, $html

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('jetpack_social_media_icons_widget_array, $html') is found 1 times:

  • /modules/widgets/social-media-icons.php line 228
    		 * @since 3.8.0
    		 *
    		 * @param array $html Associative array of HTML snippets per each icon.
    		 */
    		$html = apply_filters( 'jetpack_social_media_icons_widget_array', $html );
    		ksort( $html );
    		$html = '<ul><li>' . implode( '</li><li>', $html ) . '</li></ul>';
    		if ( ! empty( $instance['title'] ) ) {
    			$html = $args['before_title'] . $instance['title'] . $args['after_title'] . $html;
    		}
    		$html = $args['before_widget'] . $html . $args['after_widget'];