How Does WordPress Display Post Published Dates?Add microdata tag itemprop timecode function

WordPressHow to display the date of publication of an article?

Add microdata tag itemprop timecode function

Currently optimizingChen WeiliangThe WordPress theme the blog intends to enable.

It is found that the article templates of some WP themes do not display the date and time of article publication at the beginning of the article, so you need to manually add rich page summary information (microdata) to mark the itemprop time function code.

What is itemprop?

  • The role of itemscope, itemtype, itemprop attributes is to facilitate the identification of specific tags by search engine spiders.
  • itemprop=”属性名” Add a data item property whose name can be a word or a URL.
  • Rich snippets of search engine results.

HTML5 microdata specification, which is a markup content to describe specific types of information, such as comments,personinformation or events.Each type of information describes a specific type of item, such as a person, event, or comment.For example, an event can contain venue, starting time, name, and category properties.

The first

Display date and time:

March 2017, 10 2:00:56

<time datetime="<?php echo get_the_date(__('Y-m-d\TH:i:sP', 'bunyad')); ?>" itemprop="datePublished"><i class="fa fa-clock-o"></i>
<?php time_ago( $time_type ='posts' ); ?></time>

Second

Show date only (recommended):

2017/10/2

<time class="the-date" datetime="<?php echo esc_attr(get_the_time('c')); ?>" itemprop="datePublished"><i class="fa fa-clock-o"></i>
<?php echo esc_html(get_the_date()); ?></time>

Please choose whether to display the code of the date and time at the same time (the first type) or only the code of the date (the second type) according to your own needs.

Hope Chen Weiliang Blog ( https://www.chenweiliang.com/ ) shared "How WordPress Displays Post Publishing Date?Add microdata tag itemprop timecode function" to help you.

Welcome to share the link of this article:https://www.chenweiliang.com/cwl-579.html

Welcome to the Telegram channel of Chen Weiliang's blog to get the latest updates!

🔔 Be the first to get the valuable "ChatGPT Content Marketing AI Tool Usage Guide" in the channel top directory! 🌟
📚 This guide contains huge value, 🌟This is a rare opportunity, don’t miss it! ⏰⌛💨
Share and like if you like!
Your sharing and likes are our continuous motivation!

 

Comment

Your email address will not be published. Required fields * Callout

scroll to top