我运行自定义主题的WordPress博客将每个条目的日期显示为同一日期:今天。我在主页上显示最后三个帖子,但这些日期还不错。但是我的主要博客页面显示了每个帖子的当前日期。
我能够FTP到我的网站,并且可以访问所有PHP文件,问题是我不知道这个错误可能在哪个文件中,无论是index.php,page.php,single。 PHP,我不知道。如果有人可以建议问题的位置,我可以通过共享该代码来提供帮助。
这是index.php
<?php
get_header(); ?>
<div class="wrap blog">
<h1>Blog</h1>
<div class="blog-left">
<div id="main-content" class="main-content">
<?php
if ( is_front_page() && twentyfourteen_has_featured_posts() ) {
// Include the featured content template.
get_template_part( 'featured-content' );
}
?>
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<?php
if ( have_posts() ) :
// Start the Loop.
while ( have_posts() ) : the_post();
/*
* Include the post format-specific template for the content. If you want to
* use this in a child theme, then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
endwhile;
// Previous/next post navigation.
twentyfourteen_paging_nav();
else :
// If no content, include the "No posts found" template.
get_template_part( 'content', 'none' );
endif;
?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar( 'content' ); ?>
</div><!-- #main-content -->
</div>
<div class="blog-right">
<?php get_sidebar(); ?>
</div>
</div>
<?php
get_footer();
答案 0 :(得分:1)
我几乎可以肯定,如果主题使用的是模板标签,则使用the_date
功能时应该使用the_time
功能。
您可以阅读the_date
的文档,在说明中您应该阅读这些文档。
答案 1 :(得分:1)
查看模板层次结构图以确定用于显示这些帖子的文件。它可能是archive.php,front-page.php,home.php,index.php,具体取决于主题和设置。从那里,您将看到加载的功能或文件以显示每个帖子的内容。
考虑示例代码,可能在content.php中,或者如果它是特殊的帖子格式,请在content- {format} .php中