Wordpress 页面不工作。
我在这个 wordpress 网站上遇到了一些问题,它运行良好,然后所有内容都消失了,现在它在每个页面上显示帖子,而不是那些页面所见即所得的内容。
我可以看到这是一件简单的事情,但我不知道为什么它不起作用,我以前从未遇到过这个问题?
<?php get_header(); ?>
<div id="content">
<div id="greybread"><?php if (function_exists('dimox_breadcrumbs')) dimox_breadcrumbs(); ?></div>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="singlepage"><?php the_title(); ?></div>
<?php if ( has_post_thumbnail()) : ?>
<div style="float:left; margin:20px 10px 10px 0px; border:1px solid #CCCCCC;">
<?php the_post_thumbnail( array(200,200) ); ?>
</div>
<?php endif; ?>
<div class="entry">
<?php the_content('<p class="serif">Read more »</p>'); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
<?php the_tags(__('Tags: '), ', ', ' '); ?>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
以上是我在 page.php 网站上使用的代码 - 哪个不起作用?怎么了?因为它以前工作过,我有一段时间没有更改此页面上的任何内容!?
任何方向的帮助将不胜感激!很多!