在wordpress中为内容添加修改时间

时间:2017-10-18 23:41:28

标签: php wordpress

我想显示我在wordpress博客上修改文章的时间。 我试图找到代码,在这里我找到了

function wpb_last_updated_date( $content ) {
$u_time = get_the_time('U'); 
$u_modified_time = get_the_modified_time('U'); 
if ($u_modified_time >= $u_time + 86400) { 
$updated_date = get_the_modified_time('F jS, Y');
$updated_time = get_the_modified_time('h:i a'); 
$custom_content .= '<p class="last-updated">Updated on'. $updated_date . ' at '. $updated_time .'</p>';  
} 

$custom_content .= $content;
return $custom_content;
}
add_filter( 'the_content', 'wpb_last_updated_date' );

但我真的不知道如何将它应用到我的主题,显示已发布时间的代码我的主题如下所示

<?php if( ! empty( $mts_options["mts_{$section}_headline_meta_info"]['date']) ) { ?>
<span class="thetime updated"><i class="fa fa-clock-o"></i> Published on <span itemprop="datePublished"><?php the_time( get_option( 'date_format' ) ); ?></span></span>
<?php } ?>

和我试图将代码修改为此

<?php if( ! empty( $mts_options["mts_{$section}_headline_meta_info"]['date']) ) { ?>
<span class="thetime updated"><i class="fa fa-clock-o"></i> Published on <span itemprop="datePublished"><?php the_time( get_option( 'date_format' ) ); ?></span> Updated on <span itemprop="dateModified"><?php get_the_time( get_option( 'date_format' ) ); ?></span></span>
<?php } ?>

我是关于php的新人。有人可以帮忙吗?顺便说一句,我在mythemeshop使用优胜美地主题

1 个答案:

答案 0 :(得分:1)

您不需要第一组代码(过滤器挂钩)。

打印出修改后的时间,如下所示:the_modified_time( get_option( 'date_format' ) )