Server : Apache System : Linux server.lienzindia.com 4.18.0-348.7.1.el8_5.x86_64 #1 SMP Wed Dec 22 13:25:12 UTC 2021 x86_64 User : plutus ( 1007) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/plutus/public_html/wp-content/themes/vrm/partials/topbar/ |
Upload File : |
<?php use TotalTheme\Topbar\Social as Topbar_Social; use TotalTheme\Integration\WPBakery\Shortcode_Inline_Style as WPB_Style; /** * Topbar social profiles. * * @package TotalTheme * @subpackage Partials * @version 5.4.5 */ defined( 'ABSPATH' ) || exit; if ( ! Topbar_Social::is_enabled() ) { return; } // Get alt content. $social_alt = Topbar_Social::get_alt_content(); // Display Social alternative. if ( ! empty( $social_alt ) ) : WPB_Style::instance()->render_style( Topbar_Social::get_template_id() ); ?> <div id="top-bar-social-alt" <?php Topbar_Social::wrapper_class(); ?>><?php echo do_shortcode( $social_alt ); ?></div> <?php // If social alternative is defined lets bail. return; // End social alternative check. endif; ?> <div id="top-bar-social" <?php Topbar_Social::wrapper_class(); ?>><?php wpex_hook_topbar_social_top(); Topbar_Social::render_list(); wpex_hook_topbar_social_bottom(); ?></div>