Title: Using the time HTML  tag
Last modified: August 21, 2016

---

# Using the time HTML tag

 *  Resolved [fseven](https://wordpress.org/support/users/fseven/)
 * (@fseven)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/using-the-html-tag/)
 * I was trying to add schema.org markup to my website, so I wanted to add a time
   tag inside miniloops in a page, like this:
 * <time itemprop=”startDate” datetime=”[ml_field name=”schemaDate]”>[ml_field name
   =”userFriendlyDate”]</time>
 * But then it doesn’t show up on the page’s source code. Any idea why?
 * [http://wordpress.org/plugins/mini-loops/](http://wordpress.org/plugins/mini-loops/)

Viewing 1 replies (of 1 total)

 *  Thread Starter [fseven](https://wordpress.org/support/users/fseven/)
 * (@fseven)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/using-the-html-tag/#post-3961829)
 * I actually found part of the solution in the FAQs of the plugin (sorry for not
   looking at there first :P). So, I added to my function.php file the following:
 *     ```
       $allowedposttags["time"] = array(
        "datetime" => array(),
        "itemprop" => array()
       );
       ```
   
 * And then, I realized that all those “” were causing trouble, so I had to go with
   this:
 * `<time itemprop="startDate" datetime="[ml_field name=schemaDate]">[ml_field name
   ="userFriendlyDate"]</time>`
 * Hope it helps someone 🙂

Viewing 1 replies (of 1 total)

The topic ‘Using the time HTML tag’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/mini-loops_f7f7f7.svg)
 * [Mini Loops](https://wordpress.org/plugins/mini-loops/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/mini-loops/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/mini-loops/)
 * [Active Topics](https://wordpress.org/support/plugin/mini-loops/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/mini-loops/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/mini-loops/reviews/)

## Tags

 * [schema.org](https://wordpress.org/support/topic-tag/schema-org/)

 * 1 reply
 * 1 participant
 * Last reply from: [fseven](https://wordpress.org/support/users/fseven/)
 * Last activity: [12 years, 10 months ago](https://wordpress.org/support/topic/using-the-html-tag/#post-3961829)
 * Status: resolved