%PDF- %PDF-
| Direktori : /www/old2/_terainkognita.cz/www.terainkognita.cz/wp-content/themes/pliska/inc/ |
| Current File : /www/old2/_terainkognita.cz/www.terainkognita.cz/wp-content/themes/pliska/inc/wpcom.php |
<?php
/**
* WordPress.com-specific functions and definitions
*
* This file is centrally included from `wp-content/mu-plugins/wpcom-theme-compat.php`.
*
* @package pliska
*/
/**
* Adds support for wp.com-specific theme functions.
*
* @global array $themecolors
*/
function pliska_wpcom_setup() {
// phpcs:ignore WPThemeReview.CoreFunctionality.PrefixAllGlobals.NonPrefixedVariableFound
global $themecolors;
// Set theme colors for third party services.
if ( ! isset( $themecolors ) ) {
// Whitelist wpcom specific variable intended to be overruled.
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound
$themecolors = array(
'bg' => '',
'border' => '',
'text' => '',
'link' => '',
'url' => '',
);
}
}
add_action( 'after_setup_theme', 'pliska_wpcom_setup' );