search
HomeBackend DevelopmentPHP TutorialWordPress custom time display format_PHP tutorial
WordPress custom time display format_PHP tutorialJul 13, 2016 am 09:59 AM
wordpressmainarticletimeshowFormatofcustomize

WordPress custom time display format

This article mainly introduces the method of WordPress customizing the time display format. Friends who need it can refer to it

I’m helping King change the template of his private couple blog~ I searched a lot and finally got the time displayed in the format I want. So I wrote down some of the information I obtained for memo and reference by friends.

WordPress controls the output of time and date through a series of time and date functions. Here are some commonly used functions:

1. the_date_xml() function

Call format:

The code is as follows:


Output format: YYYY-MM-DD

For example: 2005-05-14

2. the_date() function

Description: This function is generally used to display time and date. According to the official documentation, when there are multiple archives published on the same day on a page, the_date() function only displays the first reference. In this case, it is best to use the_time() function. See: http://codex.wordpress.org/Template_Tags/the_date

Call format:

The code is as follows:


Parameter table:

format: (String type) Parameter that defines the time and date format.
before: (String type) Text placed before the date, no default value.
after: (String type) Text placed after the date, no default value.
echo: (Boolean) Display the date (TRUE), or return the date for use by PHP (FALSE). The default value is TRUE.

3. the_time() function

Description: This function is used to display the time and date. According to the official documentation, this function must be used within a loop. See: http://codex.wordpress.org/Template_Tags/the_time

Call format:

The code is as follows:


Parameter table:

format: (String type) Parameter that defines the time and date format.

4. get_the_time() function

Note: According to the official documentation, this function only returns time information to PHP, does not display the time and date, and must be used within a loop. See: http://codex.wordpress.org/Template_Tags/get_the_time

Call format: php

Parameter table:

format: (String type) Parameter that defines the time and date format.
The values ​​that can be used for the format parameters of the above three functions:

a = Generally used when displaying in 12-hour format, showing that the current time is am (morning) or pm (afternoon) A = The function is the same as above, the difference is that am or pm is capitalized

d = day of January, always displayed as two digits

F = month represented by the full name of the text

g = The number of hours in 12-hour format, the number of digits is determined based on the actual time G = The number of hours in the 24-hour format, the number of digits is determined based on the actual time

h = hour in 12-hour format, always displayed in two digits H = hour in 24-hour format, always displayed in two digits

Note: If the current time is 8 o'clock in the morning, the output result using the h parameter is 08, and the output result using the g parameter is 8. Changing to uppercase only changes the time system.

i = Current minute I = Output a zero, I don’t know what it is used for, I hope someone who knows can give me some advice. (capital i)

j = day of January, the number of digits is determined based on the actual date

l = Day of the week expressed in text (lowercase L) L = Output a zero. I don’t know what it is used for. I hope brothers who know it can give me some advice.

m = Month represented by number M = Month expressed by English abbreviation

s = current seconds S = generally used with parameter j, the effect is to add an ordinal word after the number of days (st, nd, rd, etc.)

Y = 4-digit year y = 2-digit year

Note: Parameters are case-sensitive. Non-parameter characters written within parameter quotes are not processed and are output directly.

For example, the following format string:

l, F j, Y

will generate a date in the following format:

Friday, September 24, 2004

5. single_month_title() function

Call format:

The code is as follows:


Parameter table:

prefix: prefix of year and month
Output format: prefix MONTH prefix YEAR

If the prefix parameter is "*", the displayed result will be as follows:

*February * 2004

The time function finally changed for King is the_time('Y year m month d day, H hour s minute i second') The display effect is: Published on: June 12, 2010, 23:14:32

Everyone can draw inferences from one example. Find the effect you want

The above is the entire content of this article. I hope it will be helpful to everyone learning WordPress.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/975135.htmlTechArticleWordPress custom time display format This article mainly introduces the method of WordPress customizing the time display format, friends who need it You can refer to the following to help King change his private couple blog template...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
wordpress后台乱码怎么办wordpress后台乱码怎么办Feb 03, 2023 pm 01:48 PM

wordpress后台乱码的解决办法:1、在wordpress的“wp-admin”文件夹下找到“admin.header.php”文件;2、将“charset”属性值设置为“UTF-8”格式即可恢复正常。

如何解决wordpress标签错误问题如何解决wordpress标签错误问题Feb 03, 2023 pm 02:03 PM

wordpress标签错误的解决办法:1、找到并打开wordpress的“wp-includes”目录下的“class-wp.php”文件;2、修改内容为“$pathinfo = isset( $_SERVER['PATH_INFO'] )?mb_convert_encoding($_SERVER['PATH_INFO'],'utf-8','GBK') : '';”即可。

WordPress设置独立的Description和KeywordsWordPress设置独立的Description和KeywordsFeb 21, 2023 am 11:14 AM

你下载的WordPress主题提供的keywords和description这两个meta标签一般都做得很差,或者根本就不提供,这样不利于SEO。本文将指导你如何给主页、分类、页面以及文章页添加单独的Description 和 Keywords。

wordpress乱码怎么办wordpress乱码怎么办Mar 09, 2023 am 09:13 AM

wordpress乱码的解决办法:1、修改“wp-config.php”文件里的“define(’DB_CHARSET’, ‘utf8′);”为“define(’DB_CHARSET’, ”);”;2、把新数据库的编码设置成“latin1_swedish_ci”;3、以uft8的格式导入备份的数据库文件即可。

wordpress进不去怎么办wordpress进不去怎么办Feb 23, 2023 am 09:41 AM

wordpress进不去的解决办法:1、把地址栏“wp-login.php”后面的参数删掉,然后重新输入密码登录;2、登录FTP,下载“pluggable.php”文件,然后找到“ADMIN_COOKIE_PATH”并将它替换为“SITECOOKIEPATH”即可。

wordpress是saas吗wordpress是saas吗Feb 21, 2023 am 10:40 AM

wordpress不是saas。SaaS是一种软件销售模式,它主要针对云端应用软件,而WordPress是一款CMS系统,它主要针对网站构建和管理。虽然WordPress可以作为SaaS提供服务,但它本质上不是一种SaaS应用。

2023年最新WordPress视频教程推荐2023年最新WordPress视频教程推荐Oct 25, 2019 pm 01:12 PM

本次PHP中文网整合了相关的视频教程,中文手册,以及相关的精选文章安利给大家,统统免费!!!通过我们分享的视频,可随时随地免费观看教程视频,也不需要迅雷或者百度网盘下载了。

wordpress是哪一年的wordpress是哪一年的Feb 01, 2023 am 10:26 AM

wordpress是2003年发布的;Matt于2003年5月27日宣布推出第一版WordPress,受到了社区的欢迎,它基于b2 Cafelog并有显著改进;WordPress的第一个版本包括全新的管理界面、模板、XHTML 1.1兼容模板、内容编辑器。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.