如何在没有包装器的情况下显示给定页面 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>
任何建议都非常感谢。