我有一个适用于博客的页面,当您点击“阅读更多”或博客标题时,它会在单独的页面中打开该博客进行阅读。但是,当我点击这两件事时,我收到以下消息:
服务器错误网站在检索时遇到错误 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>
我哪里错了?
答案 0 :(得分:1)
你应该尝试删除esc_url
...
除了在</h8>
标记内移动a
<a href="<?php the_permalink(); ?>"><h8>READ MORE</h8></a>
<强>更新强>
让我们调试,把它放在你的wp-config中:
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true); // creates and update wp-content/debug.log
define('WP_DEBUG_DISPLAY', true);
@ini_set('display_errors', 1);
要在屏幕上显示错误信息,这是一个开发阶段,对吗?