Пример #1
0
function the_champ_bp_account_linking()
{
    echo the_champ_account_linking();
}
Пример #2
0
/** 
 * Shortcode for Social account linking
 */
function the_champ_social_linking_shortcode($params)
{
    if (the_champ_social_login_enabled()) {
        extract(shortcode_atts(array('style' => '', 'title' => ''), $params));
        $html = '<div style="' . $style . '">';
        if ($title != '') {
            $html .= '<div style="font-weight:bold">' . ucfirst($title) . '</div>';
        }
        $html .= the_champ_account_linking();
        $html .= '</div>';
        return $html;
    }
    return '<h3>' . __('Enable Social Login from "Basic Configuration" section at "Super Socializer > Social Login" page in admin panel', 'Super-Socializer') . '</h3>';
}