php链接到另一个页面

时间:2012-12-30 18:05:38

标签: php html wordpress

我正在为自己的个人网站编辑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,我还没有真正改变它的原始形式,除了诸如“阅读更多”,louis moore'第二个div和</br>

之类的东西

1 个答案:

答案 0 :(得分: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>