0

我正在使用 woo-commerce 插件。我已经自定义插件从前端添加产品,它工作正常,我已成功将产品添加到数据库中,现在我必须将该产品图像显示到 class="product-thumbn as我的产品下面是我的代码我不知道如何做到这一点。

<td class="product-thumbnail" >
            <?php
              global $wpdb;
           $result = $wpdb->get_results ( "SELECT * FROM user_templates  where id= '14' " );

             foreach ( $result as $print )  
           echo $print->BgImageName;

         echo '<img src="/user_templates/'.$print->BgImageName.'"/>';
                                       ?>
             </td>

我在这里得到一个波纹管输出我只得到图像名称而不是图像。

在此处输入图像描述

4

1 回答 1

0

得到了正确答案...

<td class="product-thumbnail" >
                <?php
    global $wpdb;
     $result = $wpdb->get_results ( "SELECT * FROM user_templates  where id= ".$_SESSION['user_te']);
    foreach ( $result as $print )  
    $img_post=$print->BgImageName;
     // echo '<img src="src="../user_templates/'//.$print->BgImageName.'"/>';
        ?>                                                   
     <image height="100"src="../user_templates/<?php echo $img_post;?>" />

      </td>
于 2013-10-27T11:13:08.977 回答