Last active
October 12, 2015 03:28
-
-
Save Neolot/3964373 to your computer and use it in GitHub Desktop.
WORDPRESS Счетчик лайков Facebook Page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function getFacebookCounter($pageID='225279994223146') { | |
| $output = get_transient('facebook_counter'); | |
| if ( $output === false || $output == '' ) { | |
| $data = json_decode(@file_get_contents('http://graph.facebook.com/' . $pageID)); | |
| $output = $data->likes; | |
| set_transient( 'facebook_counter', $output, 60*10 ); | |
| } | |
| echo $output; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment