Jetpack_Likes::likes_master PHP Method

likes_master() public method

This function needs to get loaded after the scripts get added to the page.
public likes_master ( )
    function likes_master()
    {
        $protocol = 'http';
        if (is_ssl()) {
            $protocol = 'https';
        }
        $_locale = get_locale();
        // We have to account for w.org vs WP.com locale divergence
        if ($this->in_jetpack) {
            if (!defined('JETPACK__GLOTPRESS_LOCALES_PATH') || !file_exists(JETPACK__GLOTPRESS_LOCALES_PATH)) {
                return false;
            }
            require_once JETPACK__GLOTPRESS_LOCALES_PATH;
            $gp_locale = GP_Locales::by_field('wp_locale', $_locale);
            $_locale = isset($gp_locale->slug) ? $gp_locale->slug : '';
        }
        $likes_locale = '' == $_locale || 'en' == $_locale ? '' : '&lang=' . strtolower($_locale);
        $src = sprintf('%1$s://widgets.wp.com/likes/master.html?ver=%2$s#ver=%2$s%3$s', $protocol, $this->version, $likes_locale);
        $likersText = wp_kses(__('<span>%d</span> bloggers like this:', 'jetpack'), array('span' => array()));
        ?>
		<iframe src='<?php 
        echo $src;
        ?>
' scrolling='no' id='likes-master' name='likes-master' style='display:none;'></iframe>
		<div id='likes-other-gravatars'><div class="likes-text"><?php 
        echo $likersText;
        ?>
</div><ul class="wpl-avatars sd-like-gravatars"></ul></div>
		<?php 
    }