ESPN's hidden API endpoints
Latest News: http://site.api.espn.com/apis/site/v2/sports/football/college-football/news
Latest Scores: http://site.api.espn.com/apis/site/v2/sports/football/college-football/scoreboard
Latest News: http://site.api.espn.com/apis/site/v2/sports/football/college-football/news
Latest Scores: http://site.api.espn.com/apis/site/v2/sports/football/college-football/scoreboard
| <script> | |
| jQuery(document).on('ready', function(){ | |
| mapInfo = []; | |
| mapActions(); | |
| jQuery.getScript('https://www.google.com/jsapi?key=' + nebula.site.options.nebula_google_browser_api_key, function(){ | |
| google.load('maps', '3', { | |
| callback: function(){ | |
| getAllLocations(); | |
| } |
| function once(fn, args, unique){ | |
| if ( typeof onces === 'undefined' ){ | |
| onces = {}; | |
| } | |
| if ( typeof fn === 'function' ){ //If the first parameter is a function | |
| if ( typeof args === 'string' ){ //If no parameters | |
| args = []; | |
| unique = args; | |
| } |
| <?php | |
| //Add Open/Closed info to location listing columns | |
| add_filter('manage_edit-location_columns', 'schc_location_hours_columns_head'); | |
| function schc_location_hours_columns_head($defaults){ | |
| $defaults['openclosed'] = 'Open/Closed'; | |
| return $defaults; | |
| } | |
| add_action('manage_location_posts_custom_column', 'schc_location_hours_columns_content', 15, 3); | |
| function schc_location_hours_columns_content($column_name, $id){ | |
| if ( $column_name == 'openclosed' ){ |
| <?php | |
| /*========================== | |
| This snippet shows how to add an active user count to the WordPress Dashboard. | |
| Copy these contents to functions.php | |
| ===========================*/ | |
| //Active Users Metabox | |
| add_action('wp_dashboard_setup', 'gearside_activeusers_metabox'); | |
| function gearside_activeusers_metabox(){ |
| jQuery('a.some-link').on('mousedown tap touch', function(e){ | |
| eventIntent = ( e.which >= 2 )? 'Intent' : 'Explicit'; | |
| ga('set', 'dimension3', eventIntent); | |
| ga('send', 'event', 'Category', 'Action', 'Label', 'Value'); | |
| }); |
| function cloudflareDevModeToggle(toggle){ | |
| if ( !toggle ){ | |
| toggle = 'on'; | |
| } | |
| jQuery('.devmodeicon').removeClass('fa-bolt fa-medkit').addClass('fa-spin fa-spinner'); | |
| jQuery.ajax({ | |
| type: "POST", | |
| url: bloginfo["admin_ajax"], |
| AT&T: [email protected] | |
| Sprint: [email protected] | |
| T-Mobile: [email protected] | |
| Verizon: [email protected] | |
| 3 River Wireless: [email protected] | |
| ACS Wireless: [email protected] | |
| Alltel: [email protected] | |
| AT&T: [email protected] |
| 100dollars-seo.com | |
| 4webmasters.org | |
| 7makemoneyonline.com | |
| aliexpress.com | |
| anticrawler.org | |
| best-seo-offer.com | |
| best-seo-solution.com | |
| bestwebsitesawards.com | |
| blackhatworth.com | |
| buttons-for-website.com |
| /* Show the move cursor to demonstrate drag/drop scrolling on the interface. */ | |
| #board { | |
| cursor: move; | |
| } | |
| #board .list { | |
| cursor: default; | |
| } | |
| /* Change the background to a texture while maintaining board color. */ |