文件夹目录- http://edeshprotikhon.test/wp-content/themes/edeshprotikhon/map/
我正在为iframe src尝试此代码,但无法正常工作...
答案 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>
还要确保地图文件/文件夹具有与主题文件夹其余部分相同的权限。