Title: template
Published: April 25, 2014
Last modified: May 20, 2026

---

# apply_filters( ‘template’, string $template )

## In this article

 * [Parameters](https://developer.wordpress.org/reference/hooks/template/?output_format=md#parameters)
 * [Source](https://developer.wordpress.org/reference/hooks/template/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/hooks/template/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/hooks/template/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/hooks/template/?output_format=md#wp--skip-link--target)

Filters the name of the active theme.

## 󠀁[Parameters](https://developer.wordpress.org/reference/hooks/template/?output_format=md#parameters)󠁿

 `$template`string

active theme’s directory name.

## 󠀁[Source](https://developer.wordpress.org/reference/hooks/template/?output_format=md#source)󠁿

    ```php
    return apply_filters( 'template', get_option( 'template' ) );
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-includes/theme.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-includes/theme.php#L325)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-includes/theme.php#L325-L325)

## 󠀁[Related](https://developer.wordpress.org/reference/hooks/template/?output_format=md#related)󠁿

| Used by | Description | 
| [get_template()](https://developer.wordpress.org/reference/functions/get_template/)`wp-includes/theme.php` |

Retrieves name of the active theme.

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/hooks/template/?output_format=md#changelog)󠁿

| Version | Description | 
| [1.5.0](https://developer.wordpress.org/reference/since/1.5.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fhooks%2Ftemplate%2F)
before being able to contribute a note or feedback.