calvez
5/25/2017 - 9:55 AM

strm.hu sidebar links

strm.hu sidebar links

<?php
/**
 * Created by PhpStorm.
 * User: clvz
 * Date: 2017.05.24.
 * Time: 11:23
 */

global $tana_sidebar, $tana_sidebar_position;
$sidebar_id = 'sidebar';
$sidebar_class = array(
    'col-sm-3',
    'sidebar',
    'sticky-column',
    'mb2'
);
$sidebar_class[] = "area-" . $sidebar_id;
$sidebar_class = implode(' ', $sidebar_class);

// meta variables
$imguri = get_stylesheet_directory_uri();
/*
$spitify = echo $key_name = get_post_custom_values($key = 'Spotify'); echo $key_name[0];
$gplay = echo $key_name = get_post_custom_values($key = 'Google Play'); echo $key_name[0];
$youtube = echo $key_name = get_post_custom_values($key = 'Youtube'); echo $key_name[0];
$itunes = echo $key_name = get_post_custom_values($key = 'iTunes'); echo $key_name[0];
*/

?>

<div class="<?php echo esc_attr($sidebar_class); ?>">
    <div class="theiaStickySidebar">
        <div class="widget">
            <h5 class="widget-tile">Linkek</h5>
            <ul>
            <?php if( in_array( 'Spotify', get_post_custom_keys( '0' ) ) ) : ?>
                <li>
                    <a href="<?php echo esc_url( get_post_meta( get_the_ID(), 'Spotify', true ) ); ?>" alt="Spotify" title="Spotify" />
                        <img src="<?php echo $imguri; ?>/images/SP_10_LG.png">
                    </a>
                </li>
            <?php endif; ?>
            <?php if( in_array( 'Google Play', get_post_custom_keys( '0' ) ) ) : ?>       
                <li>
                    <a href="<?php echo esc_url( get_post_meta( get_the_ID(), 'Google Play', true ) ); ?>" alt="Google Play" title="Google Play" />
                        <img src="<?php echo $imguri; ?>/images/GP_4_LG.png">
                    </a>
                </li>
            <?php endif; ?>
            <?php if( in_array( 'Youtube', get_post_custom_keys( '0' ) ) ) : ?>
                <li>
                    <a href="<?php echo esc_url( get_post_meta( get_the_ID(), 'Youtube', true ) ); ?>" alt="Youtube" title="Youtube" />
                        <img src="<?php echo $imguri; ?>/images/youtube.png">
                    </a>
                </li>
            <?php endif; ?>
            <?php if( in_array( 'iTunes', get_post_custom_keys( '0' ) ) ) : ?>
                <li>
                    <a href="<?php echo esc_url( get_post_meta( get_the_ID(), 'iTunes', true ) ); ?>" alt="Apple Music" title="Apple Music" />
                        <img src="<?php echo $imguri; ?>/images/AM_5_LG.png">
                    </a>                
                </li>
            <?php endif; ?>
            </ul>
        </div>
    </div>
</div>