好的,所以我在这里上传了这个超级简单的HTML页面:
http://medicaldevicesgroup.net/wp-content/themes/medicaldevicesgroup/test.html
它利用了LinkedIn的“登录” API。查看源。这是两行代码。没有。
但
我在子主题目录中创建了一个home.php文件,并将其粘贴:
<?php require(CHILD_DIR.'/test.html'); ?>
这意味着,如果您在http://www.medicaldevicesgroup.net/处查看源,则它与http://medicaldevicesgroup.net/wp-content/themes/medicaldevicesgroup/test.html处的源完全相同。唯一的区别是主页在WordPress中,而其他URL在WordPress中。
但是,主页脚本不起作用。为什么????帮帮我!谢谢。
最佳答案
原因是因为您使用的LinkedIn API是用于http://medicaldevicesgroup.net
而不是http://www.medicaldevicesgroup.net
的。注意第二个URL中的“ www”。您需要在LinkedIn API中更改URL。
要了解我的意思,请尝试转到http://www.medicaldevicesgroup.net/wp-content/themes/medicaldevicesgroup/test.html,该地址也无法正常运行。