How to Enable My Header/Header Panel - Wordpress

Asked

Viewed 227 times

0

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

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

inserir a descrição da imagem aqui

The fact that it is not appearing is because I am creating my theme from scratch. I am aware that I need to activate it in the page functions.php.

Thank you.

1 answer

1

To enable your Theme header, 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 out the correct and complete use of the tag on Codex.

And consult here for more details.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.