View sgr_wp_get_theme.php
<?php | |
/* | |
Installed themes: | |
Parent theme = Genesis version 1.9.1 | |
Child theme = Child version 1.0 | |
*/ | |
// EXAMPLE 1: | |
$theme = wp_get_theme( get_template_directory() ); |
View sgr_wp_debug_activation.php
<?php | |
add_action('activated_plugin','save_error'); | |
/** | |
* Place entire block of code at foot of wp-admin/includes/plugin.php | |
* Don't forget to remove code after use! | |
* | |
* Location of error_activation.html must be writeable, eg in your uploads folder somewhere | |
*/ | |
function save_error(){ | |
file_put_contents( ABSPATH . 'wp-content/{somewhere writeable}/error_activation.html', ob_get_contents() ); |
OlderNewer