Fantasy E-books by PhenomenalPen

Day: December 27, 2016 Archives

Creating WordPress Theme – Adding Customizer Object

Put this code in your functions.php file ( you must insert the codes inside PHP opening(<?php) and closing(?>) tags. ) : function escimma_setup() { add_theme_support( ‘custom-logo’ ); } add_action( ‘after_setup_theme’, ‘escimma_setup’ ); You can assign a different function name if you want. Here I’m calling it escimma_setup as that is what my theme is called. […]