Untitled Snippet
// Register Default Headers function custom_default_headers() { $headers = array( 'home' => array( 'description' => __( '', 'text_domain' ), 'url' => 'https://www.sgi.ms.gov.br/', 'thumbnail_url' => '', ), 'post' => array( 'description' => __( '', 'text_domain' ), 'url' => '', 'thumbnail_url' => '', ), ); register_default_headers( $headers ); } add_action( 'after_setup_theme', 'custom_default_headers' );