1

我正在为我自己的个人网站编辑一个 wordpress 主题。该页面用于博客,当您单击“阅读更多”或博客标题时,它将在单独的页面中打开该博客以进行阅读。但是,当我单击这两件事时,我收到以下消息:

服务器错误 网站在检索 mywebsite/wordpress/?p=20 时遇到错误。它可能因维护而停机或配置不正确。以下是一些建议: 稍后重新加载此网页。HTTP 错误 500(内部服务器错误):服务器尝试完成请求时遇到意外情况。

它以前工作过,所以我知道主题附带的代码有效。继承人的代码:

<div class="box">
<?php while ( have_posts() ) : the_post(); ?>
        <article>
            <h2><a href="<?php esc_url( the_permalink() ); ?>"<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
            <h7>BY LOUIS MOORE ON</h7> <time datetime="<?php the_time( 'Y-m-d' ); ?>" pubdate><?php the_date(); ?> <?php the_time(); ?></time><?php the_content(); ?>
<a href="<?php esc_url( the_permalink() ); ?>"/><h8>READ MORE</a></h8>  </br>   
</br><div class="h9"></div>
</article></br></br></br>
<?php endwhile; ?>

</div>

我不是 php 最优秀的人,除了“阅读更多”、“路易斯·摩尔”、第二个 div 和</br>

4

1 回答 1

1

HTML 代码中有几个错误。也许这就是问题所在。

你可以试试这个:

<div class="box">
  <?php while ( have_posts() ) : the_post(); ?>
  <article>
    <h2><a href="<?php esc_url( the_permalink() ); ?>"> <?php the_title(); ?>" rel="bookmark"><?php the_title(); ?> </a></h2>
    <h7>BY LOUIS MOORE ON</h7>
    <time datetime="<?php the_time( 'Y-m-d' ); ?>"> pubdate><?php the_date(); ?> <?php the_time(); ?></time><?php the_content(); ?>
    <a href="<?php esc_url( the_permalink() ); ?>"> </a>
    <h8>READ MORE</a></h8>
    <br /><br />
    <div class="h9"></div>
  </article><br /><br /><br />
  <?php endwhile; ?>
</div>
于 2012-12-30T19:57:21.637 回答