Skip to content

Instantly share code, notes, and snippets.

@flexseth
Created September 15, 2019 17:12
Show Gist options
  • Save flexseth/608ef9a4b4e0c0860586d0848459bbe3 to your computer and use it in GitHub Desktop.
Save flexseth/608ef9a4b4e0c0860586d0848459bbe3 to your computer and use it in GitHub Desktop.
Simple Social Icon Default Styles
<?php
add_filter( 'simple_social_default_styles', 'fp_social_default_styles' );
/**
* Simple Social Icon Defaults.
*
* @param array $defaults
* @return array $args
*
* @since 1.0.0
*/
function fp_social_default_styles( $defaults ) {
$args = array(
'alignment' => 'alignleft',
'background_color' => '#1a1a1a',
'background_color_hover' => '#1a1a1a',
'border_color' => '#1a1a1a',
'border_color_hover' => '#1a1a1a',
'border_radius' => 48,
'border_width' => 0,
'icon_color' => '#999999',
'icon_color_hover' => '#aaaaaa',
'size' => 36,
);
$args = wp_parse_args( $args, $defaults );
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment