0

現在のテンプレートの css プロパティを変更せずにページ ID を呼び出そうとしています。

ページIDの呼び出しは機能しますが、そのテンプレートのプロパティを引き継ぐと思いますか? 製品画像の div がページから消える!? 現時点で持っているコードは以下です。

PHP

  <div class="entry">

    <div class="product-list">
        <?php 
        $id=7; 
        $post = get_page($id); 
        $content = apply_filters('the_content', $post->post_content); 
        echo $content;  
        ?>
      </div>
      <div class="product-content">
        <?php the_content(); ?>
      </div> 

      <div class="product-image"><?php the_post_thumbnail();?></div>

    </div><!-- / .entry -->


</div>

商品リスト クラスに段落タグを入力すると、レイアウトは完全に機能します。

ページの完全なスタイルを削除する方法について何か考えがある人はいますか?これが問題ではない場合、それは何でしょうか? ありがとうございました!

試した - しかし、うまくいかなかった

  <div class="entry">

    <div class="product-list">
        <?php 
                    $id=7; 
                    $post = get_page($id); 
                    //remove auto p filter
                    remove_filter ('the_content','wpautop');
                    $content = apply_filters('the_content', $post->post_content); 
                    //return the filter for other posts/pages down the road
                    add_filter ('the_content','wpautop');
                    echo $content;  
                    ?>
      </div>
      <div class="product-content">
        <?php the_content(); ?>
      </div> 

      <div class="product-image"><?php the_post_thumbnail();?></div>

    </div><!-- / .entry -->


</div>
4

0 に答える 0