我有一个wordpress网站,我希望条目或文章列表下方有一个个性化的文本,列表下方有一个静态页面,我可以选择该页面并将其发布在下面
有什么办法吗?
这是动态的:
< div class="latest-posts eightcol">
<?php the_post(); ?>
<article class="post">
<h2><a title="<?php the_permalink(); ?>"> <?php the_title(); ?></a></h2>
<div class="entry-meta links-turquoise">
<?php the_time('F j, Y'); ?> —
<span class="author"> <?php the_author(); ?>utvecklare</span>
</div><!-- .entry-meta .links-turquoise -->
<div>
<?php the_content(); ?>
</div>
</article>
</div><!-- .latest-posts .eightcol -->
我不知道该怎么写的是静态部分。我想创建此模板,以便可以将同一布局应用于一页以上。
希望您能理解我的需求。谢谢