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 | |
/** | |
* Plugin Name: Photon CDN | |
* Version: 1.3 | |
* Description: Use the WP.com Photon image CDN without installing JetPack | |
* Author: Scott Hartley | |
* Credit: Original by Zachary Scott | |
*/ | |
namespace zacscott; |
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 | |
/** | |
* Forums Loop | |
* | |
* @package bbPress | |
* @subpackage Theme | |
*/ | |
?> |
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
function mobile_theme_color() { | |
$color = "#000"; | |
//this is for Chrome, Firefox OS, Opera and Vivaldi | |
echo '<meta name="theme-color" content="'.$color.'">'; | |
//Windows Phone ** | |
echo '<meta name="msapplication-navbutton-color" content="'.$color.'">'; | |
// iOS Safari | |
echo '<meta name="apple-mobile-web-app-capable" content="yes">'; | |
echo '<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">'; | |
} |