* Created on: 17/08/2018 * * @package Neve */ define( 'NEVE_VERSION', '2.3.7' ); define( 'NEVE_INC_DIR', trailingslashit( get_template_directory() ) . 'inc/' ); define( 'NEVE_ASSETS_URL', trailingslashit( get_template_directory_uri() ) . 'assets/' ); if ( ! defined( 'NEVE_DEBUG' ) ) { define( 'NEVE_DEBUG', false ); } /** * Themeisle SDK filter. * * @param array $products products array. * * @return array */ function neve_filter_sdk( $products ) { $products[] = get_template_directory() . '/style.css'; return $products; } add_filter( 'themeisle_sdk_products', 'neve_filter_sdk' ); add_filter( 'themeisle_onboarding_phprequired_text', 'neve_get_php_notice_text' ); /** * Get php version notice text. * * @return string */ function neve_get_php_notice_text() { $message = sprintf( /* translators: %s message to upgrade PHP to the latest version */ __( "Hey, we've noticed that you're running an outdated version of PHP which is no longer supported. Make sure your site is fast and secure, by %s. Neve's minimal requirement is PHP 5.4.0.", 'neve' ), sprintf( /* translators: %s message to upgrade PHP to the latest version */ '%s', __( 'upgrading PHP to the latest version', 'neve' ) ) ); return wp_kses_post( $message ); } /** * Adds notice for PHP < 5.3.29 hosts. */ function neve_php_support() { printf( '

%1$s

', neve_get_php_notice_text() ); // WPCS: XSS OK. } if ( version_compare( PHP_VERSION, '5.3.29' ) <= 0 ) { /** * Add notice for PHP upgrade. */ add_filter( 'template_include', '__return_null', 99 ); switch_theme( WP_DEFAULT_THEME ); unset( $_GET['activated'] ); add_action( 'admin_notices', 'neve_php_support' ); return; } require_once get_template_directory() . '/start.php'; require_once 'globals/utilities.php'; require_once 'globals/hooks.php'; require_once 'globals/sanitize-functions.php'; require_once get_template_directory() . '/header-footer-grid/loader.php';