/**
* CheerUp Theme!
*
* This is the typical theme initialization file. Sets up the Bunyad Framework
* and the theme functionality.
*
* ----
*
* Code Locations:
*
* / - WordPress default template files.
* lib/ - Contains the Bunyad Framework files.
* inc/ - Theme related functionality and some HTML helpers.
* admin/ - Admin-only content.
* partials/ - Template parts (partials) called via get_template_part().
*
* Note: If you're looking to edit HTML, look for default WordPress templates in
* top-level / and in partials/ folder.
*
* Main Theme file: inc/theme.php
*/
// Already initialized?
if (class_exists('Bunyad_Core')) {
return;
}
// Require PHP 5.6+
if (version_compare(phpversion(), '5.6.0', '<')) {
function cheerup_php_notice() {
$message = sprintf(esc_html_x('CheerUp requires %1$sPHP 5.6+%2$s same as requirement of latest WordPress. Please ask your webhost to upgrade to at least PHP 5.6. Recommended: %1$sPHP 7+%2$s%3$s', 'Admin', 'cheerup'), '', '', '
');
printf('
%1$s