wordpress 的新手,试图弄清楚如何将特定的帖子内容检索到div
.
这是我目前所拥有的,
<div style="margin-top: 100px;">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; else: ?>
<?php endif; ?>
</div>
虽然这很好用,但我有一些问题,
1 - 这可以吗?我与一些“了解” WP 的人交谈,他们说我应该避免将帖子放入我的 html 中。
2 - 如果我将上面的代码替换为,
<div style="margin-top: 100px;">
<?php $postId = 1; get_post($postId) ?>
<?php the_content(); ?>
</div>
它不起作用。
3 - 我需要对此代码进行哪些修改才能使其正常工作?
请求:请不要将其移至wordpress.stackexchange.com
,因为那里的活动很少。
干杯。