<?php /** * Add our own output to the HTML <head> element. */ function jpry_wp_head_action() { echo '<!-- This comment will show up inside the HTML <head> element! -->'; } add_action( 'wp_head', 'jpry_wp_head_action', 10, 0 );