LoginSignup
0
1

More than 3 years have passed since last update.

【WordPress】テンプレート化したファイルを持ってくる。

Last updated at Posted at 2019-10-23

なにこれ?

テンプレート化したファイルを持ってくる。
sns-top.php / sns-archive.php / sns-single.php みたいなファイルが合った場合は<?php get_template_part( 'sns', 'top' ); ?>みたいに出来るらしいが、<?php get_template_part( 'sns-top' ); ?>のが見やすいので基本的に私は下のように書くことにする。
自動で出し分けしたい時が来たら、調べてここに追記しよーっと。

コード

template-partsフォルダのファイル名.phpを持ってくる場合
<?php get_template_part( 'template-parts/ファイル名' ); ?>

※拡張子(.php)の表記は不要

リンク

参考サイト

ありません。

Codex

get template part:テンプレートパーツ(ヘッダー、サイドバー、フッターを除きます)をテンプレートへ読み込みます。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1