_s: simplifying functions.php by making some of the stuff happening there modular with functions being called in templates showing up in template-tags.php, little extras that won't produce a visible error if they're missing in tweaks, and wpcom stuff in wpcom

This commit is contained in:
Ian Stewart 2012-01-11 03:43:23 +00:00
parent db89577313
commit 01ce62d24f
5 changed files with 251 additions and 243 deletions

18
inc/wpcom.php Normal file
View file

@ -0,0 +1,18 @@
<?php
/**
* WordPress.com-specific functions and definitions
*
* @package _s
* @since _s 1.0
*/
/**
* Set a default theme color array for WP.com.
*
* @since _s 1.0
*/
$themecolors = array(
'bg' => 'ffffff',
'border' => 'eeeeee',
'text' => '444444',
);