Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




get_template_part [ WordPress Function ]

get_template_part ( $slug, $name = null )
Parameters:
  • (string) $slug The slug name for the generic template.
  • (string) $name The name of the specialised template.
Uses:
Defined at:



Load a template part into a template

Makes it easy for a theme to reuse sections of code in a easy to overload way for child themes.

Includes the named template part for a theme or if a name is specified then a specialised part will be included. If the theme contains no {slug}.php file then no template will be included.

The template is included using require, not require_once, so you may include the same template part multiple times.

For the $name parameter, if the file is called "{slug}-special.php" then specify "special".

Source


<?php
function get_template_part$slug$name null ) {
    
do_action"get_template_part_{$slug}"$slug$name );

    
$templates = array();
    if ( isset(
$name) )
        
$templates[] = "{$slug}-{$name}.php";

    
$templates[] = "{$slug}.php";

    
locate_template($templatestruefalse);
}
?>

Examples [ wp-snippets.com ]

Google Arama Sonuçlarý

Dahasý ...

0 User Note(s)

Henüz yok. Ýlk sen ol!

Yeni Ekle ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics