Recherche…


Syntaxe

  • get_template_part ('nom-fichier-non-extension');

Paramètres

Paramètre La description
nom de fichier sans extension Le nom du composant de modèle sans extension. Par exemple 'foo' au lieu de 'foo.php'

Chargement du modèle

Extrait le code d'un certain fichier spécifié dans un autre fichier où l'appel a été effectué.

Par exemple dans example.php

<h1>Hello World!</h1>

Inside page.php

// header code
get_template_part('example');
// rest of page code

Sortie:

// header code
<h1>Hello World</h1>
// rest of page code


Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow