Default Theme Headers Generator

Overview

Use this tool to create custom code for Default Theme Headers with register_default_headers() function.

Usage

  • Fill in the user-friendly form.
  • Click the “Update Code” button.
  • Copy the code to your project.
  • Or save it as a snippet and share with the community.

Examples

If you are still learning how to use this tool, check out the following examples:

The function used in the code.
Translation file Text Domain. Optional.
Slug used in the code. Lowercase, with no spaces.
A short descriptive summary.
URL to the header image.
URL to the header image thumbnail.
Slug used in the code. Lowercase, with no spaces.
A short descriptive summary.
URL to the header image.
URL to the header image thumbnail.
Slug used in the code. Lowercase, with no spaces.
A short descriptive summary.
URL to the header image.
URL to the header image thumbnail.
Slug used in the code. Lowercase, with no spaces.
A short descriptive summary.
URL to the header image.
URL to the header image thumbnail.
Slug used in the code. Lowercase, with no spaces.
A short descriptive summary.
URL to the header image.
URL to the header image thumbnail.
  Save Snippet
// Register Default Headers
function custom_default_headers() {

	$headers = array(
		'dude dude' => array(
			'description'   => __( 'hey', 'text_domain' ),
			'url'           => 'http://fc00.deviantart.net/fs71/f/2014/022/c/e/magi_aladin_by_nehoray181-d7393sj.jpg',
			'thumbnail_url' => 'http://th08.deviantart.net/fs70/PRE/f/2014/022/3/d/mfl_by_nehoray181-d739i66.png',
		),
	);
	register_default_headers( $headers );

}
add_action( 'after_setup_theme', 'custom_default_headers' );