web-dev-qa-db-ja.com

locate_template関数 - ファイルがインデックスされていない

$locate = locate_template( 'widgets/the-post-widget.php' );

上記のパスと方法を使用して、ファイルをfunctions.phpに含めることができますが、それは起こりません。

ファイルが含まれていないようです。私は間違いをしていますか?

1
The WP Novice

locate_templateは単にテンプレートのファイル名を返します。テンプレートをロードしたい場合は、2番目の引数をtrueに設定します。

locate_template( 'widgets/the-post-widget.php', true );
2
Jacob Peattie