????
| Current Path : /home2/morganrand/public_html/sub/wp-content/themes/oceanwp/partials/topbar/ |
| Current File : /home2/morganrand/public_html/sub/wp-content/themes/oceanwp/partials/topbar/social.php |
<?php
/**
* Topbar social profiles
*
* @package OceanWP WordPress theme
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Get social options array
$social_options = oceanwp_social_options();
// Return if $social_options array is empty
if ( empty( $social_options ) ) {
return;
}
// Add classes based on topbar style
$classes = '';
$topbar_style = get_theme_mod( 'ocean_top_bar_style', 'one' );
if ( 'one' == $topbar_style ) {
$classes = 'top-bar-right';
} elseif ( 'two' == $topbar_style ) {
$classes = 'top-bar-left';
} elseif ( 'three' == $topbar_style ) {
$classes = 'top-bar-centered';
}
// Get ID
$get_id = get_theme_mod( 'ocean_top_bar_social_alt_template' );
// Check if page is Elementor page
$elementor = get_post_meta( $get_id, '_elementor_edit_mode', true );
// Get content
$get_content = oceanwp_top_bar_social_alt_content();
// Display Social alternative
if ( $get_id ) : ?>
<div id="top-bar-social-alt" class="clr <?php echo esc_attr( $classes ); ?>">
<?php
// If Elementor
if ( OCEANWP_ELEMENTOR_ACTIVE && $elementor ) {
OceanWP_Elementor::get_topbar_social_alt_content();
}
// If Beaver Builder
else if ( OCEANWP_BEAVER_BUILDER_ACTIVE && ! empty( $get_id ) ) {
echo do_shortcode( '[fl_builder_insert_layout id="' . $get_id . '"]' );
}
// Else
else {
// Display template content
echo do_shortcode( $get_content );
} ?>
</div><!-- #top-bar-social-alt -->
<?php return; endif; ?>
<?php
// Return if there aren't any profiles defined and define var
if ( ! $profiles = get_theme_mod( 'ocean_top_bar_social_profiles' ) ) {
return;
}
// Get theme mods
$link_target = get_theme_mod( 'ocean_top_bar_social_target', 'blank' );
$link_target = $link_target ? $link_target : 'blank'; ?>
<div id="top-bar-social" class="clr <?php echo esc_attr( $classes ); ?>">
<ul class="clr">
<?php
// Loop through social options
foreach ( $social_options as $key => $val ) {
// Get URL from the theme mods
$url = isset( $profiles[$key] ) ? $profiles[$key] : '';
// Display if there is a value defined
if ( $url ) {
// Display link
echo '<li class="oceanwp-'. esc_attr( $key ) .'">';
if ( in_array( $key, array( 'skype' ) ) ) {
echo '<a href="skype:'. esc_attr( $url ) .'?call" title="'. esc_attr( $val['label'] ) .'" target="_self">';
} else if ( in_array( $key, array( 'email' ) ) ) {
echo '<a href="mailto:'. antispambot( esc_attr( $url ) ) .'" title="'. esc_attr( $val['label'] ) .'" target="_self">';
} else {
echo '<a href="'. esc_url( $url ) .'" title="'. esc_attr( $val['label'] ) .'" target="_'. esc_attr( $link_target ) .'">';
}
echo '<span class="'. esc_attr( $val['icon_class'] ) .'"></span>';
echo '</a>';
echo '</li>';
} // End url check
} // End loop ?>
</ul>
</div><!-- #top-bar-social -->