File: /home/xedaptot/phuquocrentcar.com/wp-content/themes/traveler/vc_templates/vc_facebook.php
<?php
$type = $url = '';
extract(shortcode_atts(array(
'type' => 'standard',//standard, button_count, box_count
'url' => ''
), $atts));
if ( $url == '') $url = get_permalink();
$css_class = apply_filters( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, 'fb_like wpb_content_element fb_type_' . $type, $this->settings['base'], $atts );
if(st_is_https()){
$output = '<div class="'.$css_class.'"><iframe src="https://www.facebook.com/plugins/like.php?href='.$url.'&layout='.$type.'&show_faces=false&action=like&colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true"></iframe></div>'.$this->endBlockComment('fb_like')."\n";
}else{
$output = '<div class="'.$css_class.'"><iframe src="http://www.facebook.com/plugins/like.php?href='.$url.'&layout='.$type.'&show_faces=false&action=like&colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true"></iframe></div>'.$this->endBlockComment('fb_like')."\n";
}
echo balanceTags($output);