时间:2024-03-16
WordPress模板标签get_the_time获取当前文章的发表时间,与the_time()函数的区别在于get_the_time()函数只返回获取到的值,而the_time()函数直接输出结果。该函数需要用在The Loop主循环中。
get_the_time( string $d = '', integer/object $post = null )
$format
字符串值,默认为WordPress后台常规设置中的时间格式
时间格式
$post
整数型或对象,默认值:当前文章ID
指定一个文章ID或包含文章信息的对象
<?php echo get_the_time('', $post->ID); ?>
get_the_time()函数位于:wp-includes/general-template.php
相关函数:
get_the_date()
the_date()
the_modified_date()
get_the_modified_date()
the_modified_time()
get_the_modified_time()
the_time()
Copyright © 2019-2024 javascript.hk