How to activate in my Panel the Header / Header - Wordpress

0

I need to enable my header so that I can customize my header through the features that the wordpress panel itself offers.

In this image the option I want to activate is highlighted.

The fact that it is not appearing is because I'm creating my theme from scratch. I have notion that I need to enable it on the functions.php page.

Thank you.

    
asked by anonymous 18.12.2014 / 20:34

1 answer

1

To enable the header of your theme, use:

<?php get_header( $name ); ?> .

To use the header image editor, in functions.php , use something like:

add_theme_support( 'custom-header' );

You can check the correct and complete use of the tag in Codex .

And see here for more details.

    
11.03.2015 / 21:22