golden hour
/home/doctorbruno/public_html/targetpg.in/wp-content/plugins/ajaxd-wordpress/js
⬆️ Go Up
Upload
File/Folder
Size
Actions
core.css
1.59 KB
Del
OK
core.css.php
1016 B
Del
OK
core.js.php
10.89 KB
Del
OK
effects.js
5.68 KB
Del
OK
mootools.js
30.21 KB
Del
OK
Edit: core.css.php
<?php if(!defined('ABSPATH')){ /*Only if WP is not already loaded.*/ if(extension_loaded('zlib')){ $z = strtolower(ini_get('zlib.output_compression')); if ($z == false || $z == 'off') ob_start('ob_gzhandler'); } $root = dirname(dirname(dirname(dirname(dirname(__FILE__))))); if (file_exists($root.'/wp-load.php')) { // WP 2.6 require_once($root.'/wp-load.php'); } else { // Before 2.6 require_once($root.'/wp-config.php'); } header ("content-type: text/css; charset: UTF-8"); $offset = 60 * 60 * 24; $expire = "expires: " . gmdate ("D, d M Y H:i:s", time() + $offset) . " GMT"; header ($expire); } $def = ABSPATH . PLUGINDIR .'/'. AWP_BASE. '/js/core.css'; $file = TEMPLATEPATH . '/aWP/style.css'; if($awpall[default_template_folder] == 'theme' && file_exists($file)){ include($file); }elseif(!$awpall[no_default_css] && file_exists($def)){ include($def); } do_action('aWP_CSS'); ?> /*Dummy*/ .dummyclass{ border:0; }
Save