是否可以使用“get_template_part”更改“require_once”?
在我的Wordpress文件中,我尝试更改此行:
function upthemes_admin_home() {require_once('home.php');}
是这样的:
function upthemes_admin_home() {get_template_part( 'home' ); }
但没有奏效。有人,请帮忙。 谢谢你的好意。
答案 0 :(得分:0)
你能解释“没有用”吗?你收到任何消息吗?也尝试放置
get_template_part( 'home' );
在您的主题文件中并检查它是否正常工作。我想你知道get_template_part()
是相对于活动主题目录的,所以它将检查这样的文件:
/wp-content/themes/active_theme/home.php