';
//facebook
if( $smof_data['afc_share_buttons']['facebook'] == true ) {
$output .= '
Tweet';
}
//google plus
if( $smof_data['afc_share_buttons']['google-plus'] == true ) {
$output .= '
';
}
$output .='
';
return $output;
}
}
/* facebook */
function afc_facebook() {
wp_register_script( 'facebook', plugin_dir_url( __FILE__ ) . 'js/facebook.js' );
wp_enqueue_script( 'facebook' );
}
add_action( 'wp_enqueue_scripts', 'afc_facebook' );
/* twitter */
function afc_twitter() {
wp_register_script( 'twitter', plugin_dir_url( __FILE__ ) . 'js/twitter.js' );
wp_enqueue_script( 'twitter' );
}
add_action( 'wp_enqueue_scripts', 'afc_twitter' );
/* google plus */
function afc_google_plus() {
wp_register_script( 'google_plus', plugin_dir_url( __FILE__ ) . 'js/google-plus.js' );
wp_enqueue_script( 'google_plus' );
}
add_action( 'wp_enqueue_scripts', 'afc_google_plus' );
/* FONT AWESOME ICONS*/
function afc_font_awesome () {
wp_register_style( 'afc_font_awesome', '//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css');
wp_enqueue_style( 'afc_font_awesome' );
}
add_action('wp_print_styles', 'afc_font_awesome');
?>