golden hour
/home/phakp/public_html/wp-content/themes/fluida/cryout
⬆️ Go Up
Upload
File/Folder
Size
Actions
ajax.php
1.72 KB
Del
OK
controls.php
23.24 KB
Del
OK
css
-
Del
OK
customizer.php
24.2 KB
Del
OK
framework.php
842 B
Del
OK
js
-
Del
OK
languages
-
Del
OK
prototypes.php
36.14 KB
Del
OK
tgmpa-class.php
119.8 KB
Del
OK
Edit: framework.php
<?php /** * @package Cryout Framework * @version 0.8.6.3 * @revision 20220526 * @author Cryout Creations - www.cryoutcreations.eu */ define('_CRYOUT_FRAMEWORK_VERSION', '0.8.6.3'); // Load everything require_once(get_template_directory() . "/cryout/prototypes.php"); require_once(get_template_directory() . "/cryout/controls.php"); require_once(get_template_directory() . "/cryout/customizer.php"); require_once(get_template_directory() . "/cryout/ajax.php"); if( is_admin() ) { // Admin functionality require_once(get_template_directory() . "/cryout/tgmpa-class.php"); } // Set up the Theme Customizer settings and controls // Needs to be included in both dashboard and frontend add_action( 'customize_register', 'cryout_customizer_extras' ); add_action( 'customize_register', array( 'Cryout_Customizer', 'register' ) ); // FIN!
Save