1

如何在没有包装器的情况下显示给定页面 ID 的内容<p></p>

我目前使用的方法是:

<?php 
$id=21; 
$post = get_page($id); 
$content = apply_filters('the_content', $post->post_content); 
echo $content;  
?>

例如page ID = 21有以下内容:Some content

wordpress 回声是什么<p>Some content</p>

任何建议都非常感谢。

4

1 回答 1

5

如果您不希望周围的段落标签回显,只需通过添加 <?php remove_filter ('the_content', 'wpautop'); ?>到模板页面来删除过滤器。

于 2012-06-27T18:04:00.483 回答