0

祝大家好日子,

我是wordpress的新手。我想问一下如何在不同的 div 中显示我的页面内容。但是当我尝试这段代码时。它不会显示任何东西,我的页面甚至不会加载。任何帮助将非常感激。谢谢!

<?php if($_SERVER['REQUEST_URI'] == '/wordpress/?page_id=5'): ?>

   <div style="width:960px; float:left;min-height:290px;word-wrap: break-word">
     <?php while ( have_posts() ) : the_post(); ?>
     <?php get_template_part( 'content', 'page' ); ?>   
     <?php endwhile; // end of the loop. ?>
   </div>

<?php else: ?>

   <div style="width:640px; float:left;min-height:290px;word-wrap: break-word">
      <?php while ( have_posts() ) : the_post(); ?>
      <?php get_template_part( 'content', 'page' ); ?>
      <?php endwhile; // end of the loop. ?>
   </div>

<?php endif;?>

4

1 回答 1

0

如果您有权访问主题文件,请复制并粘贴page.php,将重复文件重命名为,页面的 slug 在page-about.php哪里。about同样,您可以有任意数量的page重复项。

要查找页面的 slug,请转到该page editing区域Screen Option> View Slug

于 2013-02-11T14:01:55.420 回答