我有一个全新的问题,无法解决,所以我希望有人能帮助我。
该网站是http://www.talkingdogtemplates.com. 这是一个主要使用WordPress作为CMS的大型网站,我将博客页面设置为http://www.talkingdogtemplates.com/blog.html. 我正在使用。网页上的html插件来获得扩展,我过去从未遇到过这个问题,有50多个WordPress CMS/博客。(甚至不确定这是原因,可能不是)
所以问题是,这篇文章确实显示在博客页面上,但标题中的链接没有链接,并且没有显示作者和日期信息。就像每次我编辑索引一样。php文档并重新加载它,它只是被忽略了。真奇怪。
这是索引的主要部分。php文档:
<div id="main_content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__(\'Permanent Link to %s\', \'\'), the_title_attribute(\'echo=0\')); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time(__(\'F jS, Y\', \'\')) ?> by <?php the_author() ?></small>
<div class="entry">
<?php the_content(__(\'Read the rest of this entry »\', \'\')); ?>
</div>
<p class="postmetadata"><?php the_tags(__(\'Tags:\', \'\') . \' \', \', \', \'<br />\'); ?> <?php printf(__(\'Posted in %s\', \'\'), get_the_category_list(\', \')); ?> | <?php edit_post_link(__(\'Edit\', \'\'), \'\', \' | \'); ?> <?php comments_popup_link(__(\'No Comments »\', \'\'), __(\'1 Comment »\', \'\'), __(\'% Comments »\', \'\'), \'\', __(\'Comments Closed\', \'\') ); ?></p>
</div>
<?php endwhile; ?>
我真的希望有人能帮助我。我已经尝试了我能想到的一切,所以我希望一双新的眼睛可以轻松解决这个问题。如果你需要更多信息,请告诉我。提前非常感谢!