2
我在header.php中使用get_template_part('theme-templates/opt_header1')函數,並在opt_header1.php中再次使用get_template_part('carousal')函數。然而,header.php中的get_template_part('theme-templates/opt_header1')函數工作正常,但我想使用另一個模板部分opt_header1.php這是carousal.php,但它不工作。get_template_part不工作 - WordPress
文件夾結構是像下面...
[文件夾]
[template-part]
... opt_header1.php
... carousal.php
[/template-part]
..header.php
[/文件夾]
使用...
get_template_part('carousal');
ple ase幫助:)
感謝您的快速回復。但讓我告訴你,我想在** opt_header1.php中使用** carousal **這兩個文件都在它們的根上。 我仍然需要添加「主題模板/」? –
是的,你:) 請注意主題的根是主題文件夾。 '主題模板'是一個子文件夾。 get_template_part函數需要被告知要從主題的根視角相應添加的文件 - 無論您在子文件夾內部有多深。 –
謝謝,它工作:) –