目标很简单-在页面上打印页面内容。我试过:
<?php the_content() ?>
<?= get_the_content() ?>
那么
<?php the_content(get_the_ID()) ?>
<?= get_the_content(get_the_ID()) ?>
他们都没有成功。
然后我找到了一个奇怪的解决方案:
<?= apply_filters(\'the_content\', get_post_field(\'post_content\', get_the_ID() )) ?>
为什么\\u content()和get\\u the\\u content()不起作用?
是否有比上一个更干净的解决方案来显示页面内容?