get_template_part_(slug) action-hook . WP 3.0.0
Fires before the specified template part file is loaded.
The dynamic portion of the hook name, $slug, refers to the slug name for the generic template part.
Usage
add_action( 'get_template_part_(slug)', 'action_function_name_4108', 10, 3 ); function action_function_name_4108( $slug, $name, $args ){ // action... }
- $slug(string)
- The slug name for the generic template.
- $name(string/null)
- The name of the specialized template.
- $args(array)
- Additional arguments passed to the template.
Changelog
Since 3.0.0 | Introduced. |
Since 5.5.0 | The $args parameter was added. |
Where the hook is called
get_template_part_(slug)
wp-includes/general-template.php 181
do_action( "get_template_part_{$slug}", $slug, $name, $args );