File "plugin-functions.php"
Full Path: /home/elegucvf/public_html/video/wp-content/wp-includes/wp-content/themes/atlas/functions/plugin-functions.php
File size: 597 bytes
MIME-type: text/x-php
Charset: utf-8
<?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;
}
}