我试图在不改变当前模板的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>
在product-list类中输入段落标记时,布局完美无缺。
任何人都知道如何删除页面的完整样式,或者如果这不是问题,它可能是什么?谢谢!
尝试 - 但没有效果
<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>