我們用wordpress系統進行網站建設開發網站時,關于wordpress的時間相關函數應用,以及wp的時間顯示函數。
1、輸出 2023-12-25
<?phpthe_time('Y-m-d');?>
2、輸出時間,如:10:35:28
<?phpthe_time('G:i:s');?>
3、輸出 2023年12月25日
<?phpthe_time('Y年m月d日');?>
4、輸出 2023年12月25日 星期一
<? php the_time ( 'Y年m月d日 l' ) ; ?>
5、輸出完整的日期,如 2023年12月25日 星期一 10:35:28
<? php the_time ( 'Y年m月d日 l G:i:s' ) ; ?>
我們通常會使用 wordpress 的 the_time() 系統函數之外,wordpress還有更多的時間函數,比如?get_the_time() 函數等。