Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以用“get_template_part”更改“require_once”?
在我的 Wordpress 文件中,我尝试更改这一行:
function upthemes_admin_home() {require_once('home.php');}
变成这样:
function upthemes_admin_home() {get_template_part( 'home' ); }
但没有奏效。任何人,请帮助。谢谢你的好心。
你能解释一下“没用”吗?你有消息吗?也尝试放置
get_template_part( 'home' );
在您的主题文件中并检查它是否正常工作。我想你知道这get_template_part()是相对于活动主题目录的,所以它会像这样检查文件:
get_template_part()
/wp-content/themes/active_theme/home.php