get_single_template() WordPress Function

The get_single_template() function allows you to load a specific template file for a single post. This is useful if you want to create a custom template for a specific post, or if you want to override the default template for a post type.

get_single_template() #

Retrieve path of single template in current or parent template. Applies to single Posts, single Attachments, and single custom post types.


Description

The hierarchy for this template looks like:

  1. {Post Type Template}.php
  2. single-{post_type}-{post_name}.php
  3. single-{post_type}.php
  4. single.php

An example of this is:

  1. templates/full-width.php
  2. single-post-hello-world.php
  3. single-post.php
  4. single.php

The template hierarchy and template path are filterable via the ‘$type_template_hierarchy’ and ‘$type_template’ dynamic hooks, where $type is ‘single’.

Top ↑

See also


Top ↑

Return

(string) Full path to single template file.


Top ↑

Source

File: wp-includes/template.php

function get_single_template() {
	$object = get_queried_object();

	$templates = array();

	if ( ! empty( $object->post_type ) ) {
		$template = get_page_template_slug( $object );
		if ( $template && 0 === validate_file( $template ) ) {
			$templates[] = $template;
		}

		$name_decoded = urldecode( $object->post_name );
		if ( $name_decoded !== $object->post_name ) {
			$templates[] = "single-{$object->post_type}-{$name_decoded}.php";
		}

		$templates[] = "single-{$object->post_type}-{$object->post_name}.php";
		$templates[] = "single-{$object->post_type}.php";
	}

	$templates[] = 'single.php';

	return get_query_template( 'single', $templates );
}


Top ↑

Changelog

Changelog
VersionDescription
4.7.0{Post Type Template}.php was added to the top of the template hierarchy.
4.4.0single-{post_type}-{post_name}.php was added to the top of the template hierarchy.
1.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.