* Update PHPDoc. * Add periods to the end of comment sentences. * Limit line length to 80 chars. * Use C++-style PHP comments only for function and file documentation.
21 lines
306 B
PHP
21 lines
306 B
PHP
<?php
|
|
/**
|
|
* WordPress.com-specific functions and definitions.
|
|
*
|
|
* @package _s
|
|
*/
|
|
|
|
global $themecolors;
|
|
|
|
/**
|
|
* Set a default theme color array for WP.com.
|
|
*
|
|
* @global array $themecolors
|
|
*/
|
|
$themecolors = array(
|
|
'bg' => '',
|
|
'border' => '',
|
|
'text' => '',
|
|
'link' => '',
|
|
'url' => '',
|
|
);
|