Created
October 24, 2017 12:04
-
-
Save bigdigital/3b6a77713016e21132bad6e92fa0b896 to your computer and use it in GitHub Desktop.
The7 print all config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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