forked from mirror/_s
24 lines
328 B
PHP
24 lines
328 B
PHP
<?php
|
|
/**
|
|
* WordPress.com-specific functions and definitions
|
|
*
|
|
* @package _s
|
|
* @since _s 1.0
|
|
*/
|
|
|
|
global $themecolors;
|
|
|
|
/**
|
|
* Set a default theme color array for WP.com.
|
|
*
|
|
* @global array $themecolors
|
|
* @since _s 1.0
|
|
*/
|
|
$themecolors = array(
|
|
'bg' => '',
|
|
'border' => '',
|
|
'text' => '',
|
|
'link' => '',
|
|
'url' => '',
|
|
);
|