知更鸟begin主题删除文章日期时间的方法

知更鸟begin主题删除文章日期时间的方法知更鸟begin主题删除文章日期时间的方法
在知更鸟begin主题中我们可以删除文章的日期或者时间,只需要简单注释一下这段代码即可!

文件路径:主题-inc-inc.php

修改上传后,请刷新文章页

// 时间
if (zm_get_option('meta_time')) {
function time_ago( $time_type ){
	switch( $time_type ){
		case 'comment': //评论时间
				printf(__('%1$s at %2$s'), get_comment_date(),  get_comment_time());
			break;
		case 'post'; //日志时间
				echo get_the_date();
			break;
		case 'posts'; //日志时间年
				echo get_the_date();
				echo '<i class="i-time">' . get_the_time('H:i:s') . '</i>';
			break;
	}
}