Home > wordpress > WordpressにphpでFacebookのいいね!ボタン、tweetボタン、はてブボタンを付けるコード PHP $urlget = '取得したいサイトのドメイン(htt://example.com/)' . getenv('REQUEST_URI'); $source_url = urlencode($urlget); //Facebookいいね数取得 function likeCount($str = null) { if($str) $url = $str; else $url = ((!empty($_SERVER['HTTPS']))? "https://" : "http://").$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI']; $json = file_get_contents('htt