$locate = locate_template( 'widgets/the-post-widget.php' );
上記のパスと方法を使用して、ファイルをfunctions.php
に含めることができますが、それは起こりません。
ファイルが含まれていないようです。私は間違いをしていますか?
locate_template
は単にテンプレートのファイル名を返します。テンプレートをロードしたい場合は、2番目の引数をtrue
に設定します。
locate_template( 'widgets/the-post-widget.php', true );