2016-08-04 4 views
0

저는 작업중인 Wordpress 테마에서 검색하고 싶은 이미지가 세 개 있습니다. 그러나 이미지가 실제로 검색되지 않습니다. 여기 내 코드가 있습니다. 나는 get_stylesheet_directory_uri()도 시도했는데 (도움이되지 않았다).stylesheet_directory를 사용하여 이미지를 검색 할 수 없습니다.

<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 -->   

답변

0

사용 기능 : get_template_directory_uri() 기능.
이미지 경로는 다음과 같습니다 YOUR_THEME_FOLDER/자산/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/자산/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 --> 
+0

감사합니다! 그것은 여전히 ​​이미지를 검색하지 않습니다! – mayaroy

+0

자녀 테마를 사용하고 있습니까? @mayaroy – vrajesh

+0

아이 테마를 사용하지 않습니다. @vrajesh – mayaroy