Hello @therinjfoundation
Thank you for contacting us, Yes you can use a different header for AMP pages
You can use the amp_is_request function to determine if you are on the AMP page.
eg:
if ( function_exists( 'amp_is_request' ) && amp_is_request() ) {
get_header( 'amp' );
} else {
get_header();
}
Now add header-amp.php in your themes directory (in case you are using a theme from the WordPress repo, we will recommend using a child theme.)
Also please note that it’s not an underscore (_) but it’s dash (-) that need while creating a custom header.
You can learn more about it in WordPress documentation about get_header()
I hope this helps!