Skip to content

Instantly share code, notes, and snippets.

@bigdigital
Created October 24, 2017 12:04
Show Gist options
  • Save bigdigital/3b6a77713016e21132bad6e92fa0b896 to your computer and use it in GitHub Desktop.
Save bigdigital/3b6a77713016e21132bad6e92fa0b896 to your computer and use it in GitHub Desktop.
The7 print all config
//add following code to the function.php of your child theme
add_action( 'get_header', 'dt_archive_layout', 10 );
function dt_archive_layout() {
$config = Presscore_Config::get_instance();
echo '<pre>';
print_r( $config );
echo '</pre>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment