gpt4 book ai didi

php - 无法使用 stylesheet_directory 检索图像

转载 作者:行者123 更新时间:2023-11-28 05:26:16 25 4
gpt4 key购买 nike

我想在我正在处理的 Wordpress 主题上检索三张图片。然而,实际上没有任何图像被检索到。这是我现在的代码。我也尝试了 get_stylesheet_directory_uri() (没有帮助)。

 <div class="col-md-4"> <img class = "img-responsive center-block" src ="<?php bloginfo('stylesheet_directory'); ?>/Assets/imgs/BlogReferral" alt = "Design"> 
</div><!-- End Col --> <div class = "col-md-4"> <img class = "img-responsive center-block" src ="<?php bloginfo('stylesheet_directory'); ?>/Assets/imgs/InstagramReferral" alt = "Code">
</div><!-- End Col -->
<div class = "col-md-4">
<img class = "img-responsive center-block" src ="<?php bloginfo('stylesheet_directory'); ?>/Assets/imgs/ContactReferral" alt = "Design">
</div><!-- End Col -->

最佳答案

使用函数:get_template_directory_uri() 函数。
图片路径为:YOUR_THEME_FOLDER/Assets/imgs/IMAGE_NAME

 <div class="col-md-4"> <img class = "img-responsive center-block" src ="<?php echo get_template_directory_uri() ?>/Assets/imgs/BlogReferral" alt = "Design"> 
</div><!-- End Col --> <div class = "col-md-4"> <img class = "img-responsive center-block" src ="<?php echo get_template_directory_uri(); ?>/Assets/imgs/InstagramReferral" alt = "Code">
</div><!-- End Col -->
<div class = "col-md-4">
<img class = "img-responsive center-block" src ="<?php echo get_template_directory_uri(); ?>/Assets/imgs/ContactReferral" alt = "Design">
</div><!-- End Col -->

如果您使用子主题。那么你需要使用函数 get_stylesheet_directory_uri()

图像路径将是:YOUR_CHILD_THEME/Assets/imgs/IMAGE_NAME

<div class="col-md-4"> <img class = "img-responsive center-block" src ="<?php echo get_stylesheet_directory_uri(); ?>/Assets/imgs/BlogReferral" alt = "Design"> 
</div><!-- End Col --> <div class = "col-md-4"> <img class = "img-responsive center-block" src ="<?php echo get_stylesheet_directory_uri(); ?>/Assets/imgs/InstagramReferral" alt = "Code">
</div><!-- End Col -->
<div class = "col-md-4">
<img class = "img-responsive center-block" src ="<?php echo get_stylesheet_directory_uri(); ?>/Assets/imgs/ContactReferral" alt = "Design">
</div><!-- End Col -->

关于php - 无法使用 stylesheet_directory 检索图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38760632/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com