Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/wordpress/11.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 如何在wordpress索引中加入动态和静态页面_Php_Wordpress - Fatal编程技术网

Php 如何在wordpress索引中加入动态和静态页面

Php 如何在wordpress索引中加入动态和静态页面,php,wordpress,Php,Wordpress,我有一个Wordpress网站,我希望在条目或文章列表下方有一个个性化文本,在列表下方有一个静态页面。我可以选择并在下面发布该页面 有什么办法吗 <div class="latest-posts eightcol"> <?php the_post(); ?> <article class="post"> <h2><a title="<?php the_permalink(); ?>"> <?php

我有一个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'); ?> &mdash;
      <span class="author"> <?php the_author(); ?>utvecklare</span>
    </div><!-- .entry-meta .links-turquoise -->
    <div>
      <?php the_content(); ?>
    </div>
  </article>
</div><!-- .latest-posts .eightcol -->