我在wordpress主题中制作了一个自定义页面。该页面工作正常。但是我使用the_content()时遇到了麻烦;功能。我使用一些自定义字段在页面上显示一些内容,我希望页面的内容(在编辑器中输入)显示在页面上的特定位置。但无论我在编辑器中输入什么,都会被放置在页面顶部的所有其他内容之上。
编辑:
以下是完整代码:
<?php get_header(); ?>
<div id="main-content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
<div class="mobile-top">
<a href="<?php the_permalink(); ?>">
<p><?php the_title(); ?> price</p>
</a>
</div>
<?php comments_template(); ?>
</div>
</div> <!--main-content Ends-->