我无法在wp正确的文件夹目录中访问

时间:2019-07-19 07:39:06

标签: wordpress

文件夹目录- http://edeshprotikhon.test/wp-content/themes/edeshprotikhon/map/

我正在为iframe src尝试此代码,但无法正常工作...

“ style =” height:-webkit-fill-available;宽度:100%;“ frameborder =” 0“>

1 个答案:

答案 0 :(得分:0)

当引用主题文件夹中的文件时,您想使用一个函数来输出与您正在处理的文件所处位置有关的正确路径。像<? get_stylesheet_directory_uri(); ?><? get_template_directory_uri(); ?>这样的函数应该给出正确的路径。因此对于您的iframe,您需要这样的东西:

<iframe src="<? get_template_directory_uri(); ?>/map" style="height: -webkit-fill- 
available; width: 100%;" frameborder="0"></iframe>

还要确保地图文件/文件夹具有与主题文件夹其余部分相同的权限。