Title: HTML Comments in Head
Last modified: March 3, 2022

---

# HTML Comments in Head

 *  Resolved [egornmore](https://wordpress.org/support/users/egornmore/)
 * (@egornmore)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/html-comments-in/)
 * Hello,
    Is there any way to add HTML comments <!– –> in the head tag? I’m trying
   to do so using ‘wp_head’ function but comments don’t appear
    -  This topic was modified 4 years, 3 months ago by [egornmore](https://wordpress.org/support/users/egornmore/).

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Support [Milind More](https://wordpress.org/support/users/milindmore22/)
 * (@milindmore22)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/html-comments-in/#post-15423141)
 * Hello [@egornmore](https://wordpress.org/support/users/egornmore/)
 * Thank you for support topic, HTML comments are stripped out to optimize the DOM
 * Also please note that [conditional HTML comments](https://amp.dev/documentation/guides-and-tutorials/learn/spec/amphtml/#comments)
   are not allowed on AMP
 * Hope this helps!
 *  Plugin Author [Weston Ruter](https://wordpress.org/support/users/westonruter/)
 * (@westonruter)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/html-comments-in/#post-15423304)
 * If you want to turn off HTML comment removal, you can use this PHP plugin code:
 *     ```
       add_filter( 'amp_optimizer_config', static function ( $config ) {
       	$config['transformers'] = array_diff(
       		$config['transformers'],
       		[
       			\AmpProject\Optimizer\Transformer\MinifyHtml::class,
       		]
       	);
       	return $config;
       } );
       ```
   
 *  Thread Starter [egornmore](https://wordpress.org/support/users/egornmore/)
 * (@egornmore)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/html-comments-in/#post-15423790)
 * It works
    Thanks for your time!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘HTML Comments in Head’ is closed to new replies.

 * ![](https://ps.w.org/amp/assets/icon.svg?rev=2527602)
 * [AMP](https://wordpress.org/plugins/amp/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/amp/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/amp/)
 * [Active Topics](https://wordpress.org/support/plugin/amp/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/amp/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/amp/reviews/)

## Tags

 * [Comments](https://wordpress.org/support/topic-tag/comments/)
 * [head](https://wordpress.org/support/topic-tag/head/)

 * 3 replies
 * 3 participants
 * Last reply from: [egornmore](https://wordpress.org/support/users/egornmore/)
 * Last activity: [4 years, 3 months ago](https://wordpress.org/support/topic/html-comments-in/#post-15423790)
 * Status: resolved