This file contains 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
<?php | |
//Add in a customized Wordpress admin workflow for a simplified experience | |
function edit_admin_menus() { | |
//Set this as what ever you want the default admin landing page to be | |
$redirect = 'edit.php?post_type=page'; //Pages | |
$defaultURL = get_option( 'siteurl' ) . '/wp-admin/' . $redirect; | |
//Add/remove cookies/redirects |
This file contains 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
<?php | |
/** | |
* Use Twitch.tv API v3 to check if the specified channel has stream going on | |
* | |
* @author Niko Heikkilä, 2014 | |
* @param STRING $channel Representing the channel/account name | |
* @return BOOL TRUE if online, FALSE if offline | |
*/ | |