<?php
/**
* Function from plugins
*
* @package Atlas
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
if ( ! function_exists( 'th90_social_shares' ) ) {
function th90_social_shares( $args = '' ) {
if ( TH90_ATLAS_CORE_ACTIVE ) {
return th90_core_social_shares( $args );
}
return;
}
}
if ( ! function_exists( 'th90_the_social_shares' ) ) {
function th90_the_social_shares( $args = '' ) {
if ( TH90_ATLAS_CORE_ACTIVE ) {
return th90_core_the_social_shares( $args );
}
return;
}
}