在WordPress内部使用纯PHP代码时, 我在获取glob()工作以生成图像源方面遇到麻烦。
<div class="carousel-inner" role="listbox" style="height=600px; width=1000px;">
<?php
$directory = "http://geocaa.com/wp-content/themes/Booting/img/services/";
$images = glob($directory . "*.png");
foreach($images as $image)
{
echo '<div class="dynamic item">';
echo ' <img src="'.$image.'" alt="...">';
echo ' </div>';
}
?>
</div>
如你所见, 我试图将$目录硬编码为” http://geocaa.com/wp-content/themes/Booting/img/services/”;并且我已经针对相同的问题针对这两个帖子[Post 1和Post 2]进行了调查, 但是那里的解决方案仍然对我不起作用!
get_theme_root()不会恢复任何内容, 但是get_template_directory()返回的内容更像
$images = glob(get_template_directory().$directory . "*.png");
/home/vcbb/public_html/wp-content/themes/geocaa/img/services/img.png
对图像src没用
#1
尝试这个:
$directory = "/img/services/";
$images = glob(get_template_directory().$directory . "*.png");
foreach($images as $image)
{
echo '<div class="dynamic item">';
echo ' <img src="'. str_replace(get_home_path(), get_home_url(), $image) .'" alt="...">';
echo ' </div>';
}
评论前必须登录!
注册