Difference between revisions of "Microdata"

From Joomla! Documentation

(Added roadmap from 3.4 announcement)
(20 intermediate revisions by 2 users not shown)
Line 8: Line 8:
 
Microdata can be used to explain just about anything you would ever want to explain, and there are more 'schemas' being added on a regular basis.  There are several vocabularies in existence, however at present the system favoured by search engines is that of [https://schema.org schema.org].
 
Microdata can be used to explain just about anything you would ever want to explain, and there are more 'schemas' being added on a regular basis.  There are several vocabularies in existence, however at present the system favoured by search engines is that of [https://schema.org schema.org].
 
<br>
 
<br>
To understand how search engines use the Microdata information take a look at [https://www.youtube.com/watch?v=A-kX0Aut-18 this short video].
+
To understand how search engines use the microdata information take a look at [https://www.youtube.com/watch?v=A-kX0Aut-18 this short video].
 +
 
 +
==Joomla 3.x roadmap for Microdata==
 +
The 3.2 release introduced the JMicrodata library, part of one of the many successful projects submitted during GSoC 2013 and the 3.3 release introduced microdata elements into two of the core component’s layouts. For 3.4, we aim to continue refining the JMicrodata library to ensure it is flexible and easy to use for users of all skill levels and continue implementing microdata elements into core layouts.
  
 
==How do I use Microdata?==
 
==How do I use Microdata?==
 
Microdata can be added to Joomla! using template overrides or with the use of plugins which allow you to insert microdata into specific resources.
 
Microdata can be added to Joomla! using template overrides or with the use of plugins which allow you to insert microdata into specific resources.
 
<br>
 
<br>
<u>As of '''Joomla! 3.2''' there is a [https://github.com/joomla/joomla-cms/tree/master/libraries/joomla/microdata library] within Joomla! which allows developers to pull in microdata without needing to format it correctly</u>. The following resources are available by the author of the microdata library introducing the library and how to use it:
+
As of '''Joomla!''' {{JVer|3.2}} there is a [https://github.com/joomla/joomla-cms/tree/master/libraries/joomla/microdata library] within Joomla! which allows developers to pull in microdata without needing to format it correctly.
*http://magazine.joomla.org/issues/issue-oct-2013/item/1551-what-about-microdata-rich-snippets-in-joomla
 
*https://gist.github.com/PAlexcom/6339949
 
  
 
==JMicrodata==
 
==JMicrodata==
[https://github.com/joomla/joomla-cms/blob/master/libraries/joomla/microdata/microdata.php JMicrodata] (since version 3.2) is a [https://github.com/joomla/joomla-cms/tree/master/libraries/joomla/microdata library] to implement http://schema.org microdata semantics.
+
[https://github.com/joomla/joomla-cms/blob/master/libraries/joomla/microdata/microdata.php JMicrodata] is a library to implement and output http://schema.org microdata semantics.
 
<br>
 
<br>
The JMicrodata class uses the [https://github.com/joomla/joomla-cms/blob/master/libraries/joomla/microdata/types.json types.json] file which contains all available http://schema.org Types and Properties.
 
 
<br>
 
<br>
The types.json was automatically created with the https://github.com/PAlexcom/Spider4Schema web crawler.
+
The library was designed with this goals in mind:
<br>
+
# Having the '''possibility to switch the Microdata Type dynamically''', you just change the Type (there are 558 different available types).
<br>
+
# '''Display validated semantics''', the library takes care to display data correctly.
For some usage examples you can see the library test file https://github.com/joomla/joomla-cms/blob/master/tests/unit/suites/libraries/joomla/microdata/JMicrodataTest.php
+
# '''Enable/disable the microdata''' semantics.
<br>
+
# '''Fallbacks''', you should never lose any meaningful semantic.
<br>
+
The JMicrodata class uses the [https://github.com/joomla/joomla-cms/blob/master/libraries/joomla/microdata/types.json types.json] file which contains all available http://schema.org <i>Types</i> and <i>Properties</i>, that file was automatically created with the https://github.com/PAlexcom/Spider4Schema web crawler.
For a more detailed documentation of the library see the gist created by the author:
+
 
<br>
+
==How do I use the JMicrodata library?==
https://gist.github.com/PAlexcom/6339949
+
First of all you need to make an instance of the library in your extensions:
 +
<source lang="php">
 +
<?php
 +
$microdata = new JMicrodata('Article');
 +
?>
 +
</source>
 +
So let's suppose that you have the following string which is part of your article:
 +
<source lang="html4strict">
 +
<div>
 +
    <!-- Author of the content -->
 +
    <span>
 +
        Written by Alexandru Pruteanu
 +
    </span>
 +
    <!-- The content -->
 +
    Here is the article text...
 +
<div>
 +
</source>
 +
And you want to add microdata semantics and you setup the current scope type as <i>Article</i>:
 +
<source lang="php">
 +
<?php
 +
$microdata = new JMicrodata('Article');
 +
?>
 +
 
 +
<div <?php echo $microdata->displayScope();?>>
 +
    <!-- Author of the content -->
 +
    <span>
 +
        Written by <?php echo $microdata->content('Alexandru Pruteanu')->property('author')->fallback('Person', 'name')->display();?>
 +
    </span>
 +
    <!-- The content -->
 +
    <?php echo $microdata->content('Here is the article text...')->property('articleBody')->display();?>
 +
<div>
 +
</source>
 +
The library will display:
 +
<source lang="html4strict">
 +
<div itemscope itemtype='https://schema.org/Article'>
 +
    <!-- Author of the content -->
 +
    <span>
 +
        Written by
 +
        <span itemprop='author' itemscope itemtype='https://schema.org/Person'>
 +
            <span itemprop='name'>Alexandru Pruteanu</span>
 +
        </span>
 +
    </span>
 +
    <!-- The content -->
 +
    <span itemprop='articleBody'>Here is the article text...</span>
 +
<div>
 +
</source>
 +
What happens if the current scope is something else than <i>Article</i>, for example a <i>Product</i> scope, and the current scope doesn't have an <i>author</i> and <i>articleBody</i> property?
 +
<source lang="php">
 +
<?php
 +
$microdata = new JMicrodata('Product');
 +
?>
 +
 
 +
<div <?php echo $microdata->displayScope();?>>
 +
    <!-- Author of the content -->
 +
    <span>
 +
        Written by <?php echo $microdata->content('Alexandru Pruteanu')->property('author')->fallback('Person', 'name')->display();?>
 +
    </span>
 +
    <!-- The content -->
 +
    <?php echo $microdata->content('Here is the article text...')->property('articleBody')->display();?>
 +
<div>
 +
</source>
 +
As you've added a fallback <tt>->fallback('Person', 'name')</tt>, it will fallback to the <i>Person</i> type, and you will not lose any meaningful semantic.
 +
<source lang="html4strict">
 +
<div itemscope itemtype='https://schema.org/Product'>
 +
    <!-- Author of the content -->
 +
    <span>
 +
        Written by
 +
        <span itemscope itemtype='https://schema.org/Person'>
 +
            <span itemprop='name'>Alexandru Pruteanu</span>
 +
        </span>
 +
    </span>
 +
    <!-- The content -->
 +
    Here is the article text...
 +
<div>
 +
</source>
 +
If you don't need all that microdata information, you just disable that feature by calling: <tt>$microdata->enable(false);</tt>
 +
<source lang="php">
 +
<?php
 +
$microdata = new JMicrodata('Product');
 +
$microdata->enable(false);
 +
?>
 +
 
 +
<div <?php echo $microdata->displayScope();?>>
 +
    <!-- Author of the content -->
 +
    <span>
 +
        Written by <?php echo $microdata->content('Alexandru Pruteanu')->property('author')->fallback('Person', 'name')->display();?>
 +
    </span>
 +
    <!-- The content -->
 +
    <?php echo $microdata->content('Here is the article text...')->property('articleBody')->display();?>
 +
<div>
 +
 
 +
</source>
 +
The library will display the following:
 +
<source lang="html4strict">
 +
<div>
 +
    <!-- Author of the content -->
 +
    <span>
 +
        Written by Alexandru Pruteanu
 +
    </span>
 +
    <!-- The content -->
 +
    Here is the article text...
 +
<div>
 +
</source>
  
 
==JMicrodata documentation==
 
==JMicrodata documentation==
Line 36: Line 138:
 
<br>
 
<br>
 
<br>
 
<br>
<source lang="php">
+
<code>'''JMicrodata::htmlScope($scope);'''</code><br>
JMicrodata::htmlScope($scope);
 
</source>  
 
 
Return:
 
Return:
 
<source lang="php">
 
<source lang="php">
Line 47: Line 147:
 
<br>
 
<br>
 
<br>
 
<br>
<source lang="php">
+
<code>'''JMicrodata::htmlProperty($property);'''</code><br>  
JMicrodata::htmlProperty($property);
 
</source>  
 
 
Return:
 
Return:
 
<source lang="php">
 
<source lang="php">
Line 58: Line 156:
 
<br>
 
<br>
 
<br>
 
<br>
<source lang="php">
+
<code>'''JMicrodata::htmlSpan($content, $property = "", $scope = "", $inverse = false);'''</code><br>  
JMicrodata::htmlSpan($content, $property = '', $scope = '', $inverse = false);
 
</source>  
 
 
Return:
 
Return:
 
<source lang="php">
 
<source lang="php">
Line 71: Line 167:
 
<br>
 
<br>
 
<br>
 
<br>
<source lang="php">
+
<code>'''JMicrodata::htmlMeta($content, $property, $scope = "", $inverse = false);'''</code><br>
JMicrodata::htmlMeta($content, $property, $scope = '', $inverse = false);
 
</source>  
 
 
Return:
 
Return:
 
<source lang="php">
 
<source lang="php">
<meta $property $scope content='$content'>
+
<meta $property $scope content="$content">
 
</source>
 
</source>
the microdata in a <meta> tag with <i>content for machines</i>.
+
the microdata in a <meta> tag with the <i>content for machines</i>, this method does not add the meta tag in the <head> section of the page.
 
<br>
 
<br>
 
<br>
 
<br>
 
<br>
 
<br>
<source lang="php">
+
<code>'''$microdata = JMicrodata($type = "", $flag = true);'''</code><br>  
$microdata = JMicrodata($type = '', $flag = true);
 
</source>  
 
 
Create a new instance of the <i>JMicrodata</i> class and setup the current <i>Type</i>, the flag param is for enabling or disabling HTML microdata semantics output. Fallback to <i>Thing</i> Type if the Type isn't available or given.
 
Create a new instance of the <i>JMicrodata</i> class and setup the current <i>Type</i>, the flag param is for enabling or disabling HTML microdata semantics output. Fallback to <i>Thing</i> Type if the Type isn't available or given.
 
<br>
 
<br>
 
<br>
 
<br>
 
<br>
 
<br>
<source lang="php">
+
<code>'''$microdata->enable($flag = true);'''</code><br>  
$microdata->enable($flag = true);
 
</source>  
 
 
Enable or Disable HTML Microdata semantics output.
 
Enable or Disable HTML Microdata semantics output.
 
<br>
 
<br>
 
<br>
 
<br>
 
<br>
 
<br>
<source lang="php">
+
<code>'''$microdata->isEnabled();'''</code><br>  
$microdata->isEnabled();
 
</source>  
 
 
Return true if Microdata semantics HTML output are enabled.
 
Return true if Microdata semantics HTML output are enabled.
 
<br>
 
<br>
 
<br>
 
<br>
 
<br>
 
<br>
<source lang="php">
+
<code>'''$microdata->setType($type);'''</code><br>
$microdata->setType($type);
 
</source>  
 
 
Set a new Schema.org <i>Type</i>, there is also a $microdata->getType() function to retrieve the current <i>Type</i>.
 
Set a new Schema.org <i>Type</i>, there is also a $microdata->getType() function to retrieve the current <i>Type</i>.
 
<br>
 
<br>
 
<br>
 
<br>
 
<br>
 
<br>
<source lang="php">
+
<code>'''$microdata->property($name);'''</code><br>  
$microdata->property($name);
 
</source>  
 
 
Setup the <i>Property</i> if available in the current <i>Type</i> Scope, there is also a $microdata->getProperty() function to retrieve the current <i>Property</i>.
 
Setup the <i>Property</i> if available in the current <i>Type</i> Scope, there is also a $microdata->getProperty() function to retrieve the current <i>Property</i>.
 
<br>
 
<br>
 
<br>
 
<br>
 
<br>
 
<br>
<source lang="php">
+
<code>'''$microdata->content($value, $machineValue = null);'''</code><br>  
$microdata->content($value, $machineValue = null);
 
</source>  
 
 
Setup a <i>Text value</i> or <i>Content value</i> for the Microdata, there is also a $microdata->getContent() function to retrieve the current <i>Text value</i>.
 
Setup a <i>Text value</i> or <i>Content value</i> for the Microdata, there is also a $microdata->getContent() function to retrieve the current <i>Text value</i>.
 
<br>
 
<br>
 
<br>
 
<br>
 
<br>
 
<br>
<source lang="php">
+
<code>'''$microdata->fallback($type, $property);'''</code>  
$microdata->fallback($type, $property);
+
<br>Setup a Fallback <i>Type</i> and <i>Property</i>, there are also the $microdata->getFallbackType() and $microdata->getFallbackProperty() to retrieve the Fallback <i>Type</i> and Fallback <i>Property</i>. Fallback to <i>Thing Type</i> if the <i>Type</i> isn't available, Fallback to <i>null</i> the Property if isn't available.
</source>  
 
Setup a Fallback <i>Type</i> and <i>Property</i>, there are also the $microdata->getFallbackType() and $microdata->getFallbackProperty() to retrieve the Fallback <i>Type</i> and Fallback <i>Property</i>. Fallback to <i>Thing Type</i> if the <i>Type</i> isn't available, Fallback to <i>null</i> the Property if isn't available.
 
 
<br>
 
<br>
 
<br>
 
<br>
 
<br>
 
<br>
<source lang="php">
+
<code>'''$microdata->displayScope();'''</code><br>
$microdata->displayScope();
 
</source>
 
 
Return:  
 
Return:  
 
<source lang="php">
 
<source lang="php">
Line 142: Line 220:
 
<br>
 
<br>
 
<br>
 
<br>
<source lang="php">
+
<code>'''$microdata->display($displayType = "", $emptyOutput = false);'''</code><br>
$microdata->display($displayType = '', $emptyOutput = false);
 
</source>
 
 
Return the Microdata HTML, if the <i>Property</i> isn't available it checks for a Fallback, otherwise return ''.
 
Return the Microdata HTML, if the <i>Property</i> isn't available it checks for a Fallback, otherwise return ''.
 
<br>
 
<br>
Line 158: Line 234:
 
<br>
 
<br>
 
<br>
 
<br>
— What happens if you call display($displayType = 'meta') ?
+
— What happens if you call display($displayType = "meta") ?
 
<br>
 
<br>
 
The returned HTML will be inside a <meta> HTML tag.
 
The returned HTML will be inside a <meta> HTML tag.
Line 170: Line 246:
 
There are 3 types of Microdata:
 
There are 3 types of Microdata:
 
* nested → example: <source lang="php">
 
* nested → example: <source lang="php">
itemprop="$property" itemscope itemtype="http://schema.org/$scope</source>, if there is also available a $content it will output <source lang="php">
+
itemprop="$property" itemscope itemtype="http://schema.org/$scope</source>", if there is also available a $content it will output <source lang="php">
<span itemprop="$property" itemscope itemtype="http://schema.org/$scope>$content</span></source>
+
<span itemprop="$property" itemscope itemtype="http://schema.org/$scope">$content</span></source>
 
* meta → example: <source lang="php">
 
* meta → example: <source lang="php">
 
<meta content="$content" itemprop="$property"></source>, if no $content is available will output <source lang="php">
 
<meta content="$content" itemprop="$property"></source>, if no $content is available will output <source lang="php">
Line 178: Line 254:
 
itemprop="$property"</source>, if there is available a $content will output <source lang="php">
 
itemprop="$property"</source>, if there is available a $content will output <source lang="php">
 
<span itemprop="$property">$content</span></source>
 
<span itemprop="$property">$content</span></source>
==How do I use the JMicrodata library?==
 
First of all you need to make an instance of the library in your extensions:
 
<source lang="php">
 
$microdata = new JMicrodata('Article');
 
</source>
 
So let's suppose that you have the following string which is part of your article and the current scope is <i>Article</i>:
 
<source lang="php">
 
echo 'Written by Alexandru Pruteanu';
 
</source>
 
And the microdata you need to add is an <i>author</i> property:
 
<source lang="php">
 
echo 'Written by' . $microdata->content(“Alexandru Pruteanu”)->property('author')->fallback('Person', 'name')->display();
 
</source>
 
The library will display:
 
<source lang="html4strict">
 
Written by
 
<span itemprop='author' itemscope itemtype='https://schema.org/Person'>
 
    <span itemprop='name'>
 
        Alexandru Pruteanu
 
    </span>
 
</span>
 
</source>
 
What happens if the current scope is something else than <i>Article</i>, for example a <i>Product</i> scope, and the current scope doesn't have an <i>author</i> property?
 
 
<br>
 
<br>
Well it will fallback in:
+
For some usage examples you can see the library test file https://github.com/joomla/joomla-cms/blob/master/tests/unit/suites/libraries/joomla/microdata/JMicrodataTest.php
<source lang="html4strict">
+
 
Written by
 
<span itemscope itemtype='https://schema.org/Person'>
 
    <span itemprop='name'>
 
        Alexandru Pruteanu
 
    </span>
 
</span>
 
</source>
 
If I want to disable the microdata semantics output?
 
<br>
 
You can simply disable the microdata output by calling the following function:
 
<source lang="php">
 
$microdata->enable(false);
 
</source>
 
The library will display the following:
 
<source lang="html4strict">
 
Written by Alexandru Pruteanu
 
</source>
 
 
==How To implement Microdata yourself==
 
==How To implement Microdata yourself==
 
* [[How To Implement Rich Snippet for Breadcrumbs]]
 
* [[How To Implement Rich Snippet for Breadcrumbs]]
 
[[Category:Search Engine Optimisation]]
 
[[Category:Search Engine Optimisation]]

Revision as of 07:35, 1 May 2014

Quill icon.png
Content is Incomplete

This article or section is incomplete, which means it may be lacking information. You are welcome to assist in its completion by editing it as well. If this article or section has not been edited in several days, please consider helping complete the content.
This article was last edited by Sovainfo (talk| contribs) 10 years ago. (Purge)


What is Microdata?[edit]

Microdata is a way of adding contextual information to your website and its contents, allowing search engines to better understand the information you provide them with.

Contextual information allows search engines to understand the meaning of the information presented on your website, which allows it to better answer more verbose 'natural language' queries where an understanding of the meaning helps to interpret the most relevant content to be displayed.

Microdata can be used to explain just about anything you would ever want to explain, and there are more 'schemas' being added on a regular basis. There are several vocabularies in existence, however at present the system favoured by search engines is that of schema.org.
To understand how search engines use the microdata information take a look at this short video.

Joomla 3.x roadmap for Microdata[edit]

The 3.2 release introduced the JMicrodata library, part of one of the many successful projects submitted during GSoC 2013 and the 3.3 release introduced microdata elements into two of the core component’s layouts. For 3.4, we aim to continue refining the JMicrodata library to ensure it is flexible and easy to use for users of all skill levels and continue implementing microdata elements into core layouts.

How do I use Microdata?[edit]

Microdata can be added to Joomla! using template overrides or with the use of plugins which allow you to insert microdata into specific resources.
As of Joomla! Joomla 3.2 there is a library within Joomla! which allows developers to pull in microdata without needing to format it correctly.

JMicrodata[edit]

JMicrodata is a library to implement and output http://schema.org microdata semantics.

The library was designed with this goals in mind:

  1. Having the possibility to switch the Microdata Type dynamically, you just change the Type (there are 558 different available types).
  2. Display validated semantics, the library takes care to display data correctly.
  3. Enable/disable the microdata semantics.
  4. Fallbacks, you should never lose any meaningful semantic.

The JMicrodata class uses the types.json file which contains all available http://schema.org Types and Properties, that file was automatically created with the https://github.com/PAlexcom/Spider4Schema web crawler.

How do I use the JMicrodata library?[edit]

First of all you need to make an instance of the library in your extensions:

<?php
$microdata = new JMicrodata('Article');
?>

So let's suppose that you have the following string which is part of your article:

<div>
    <!-- Author of the content -->
    <span>
        Written by Alexandru Pruteanu
    </span>
    <!-- The content -->
    Here is the article text...
<div>

And you want to add microdata semantics and you setup the current scope type as Article:

<?php
$microdata = new JMicrodata('Article');
?>

<div <?php echo $microdata->displayScope();?>>
    <!-- Author of the content -->
    <span>
        Written by <?php echo $microdata->content('Alexandru Pruteanu')->property('author')->fallback('Person', 'name')->display();?>
    </span>
    <!-- The content -->
    <?php echo $microdata->content('Here is the article text...')->property('articleBody')->display();?>
<div>

The library will display:

<div itemscope itemtype='https://schema.org/Article'>
    <!-- Author of the content -->
    <span>
        Written by
        <span itemprop='author' itemscope itemtype='https://schema.org/Person'>
            <span itemprop='name'>Alexandru Pruteanu</span>
        </span>
    </span>
    <!-- The content -->
    <span itemprop='articleBody'>Here is the article text...</span>
<div>

What happens if the current scope is something else than Article, for example a Product scope, and the current scope doesn't have an author and articleBody property?

<?php
$microdata = new JMicrodata('Product');
?>

<div <?php echo $microdata->displayScope();?>>
    <!-- Author of the content -->
    <span>
        Written by <?php echo $microdata->content('Alexandru Pruteanu')->property('author')->fallback('Person', 'name')->display();?>
    </span>
    <!-- The content -->
    <?php echo $microdata->content('Here is the article text...')->property('articleBody')->display();?>
<div>

As you've added a fallback ->fallback('Person', 'name'), it will fallback to the Person type, and you will not lose any meaningful semantic.

<div itemscope itemtype='https://schema.org/Product'>
    <!-- Author of the content -->
    <span>
        Written by
        <span itemscope itemtype='https://schema.org/Person'>
            <span itemprop='name'>Alexandru Pruteanu</span>
        </span>
    </span>
    <!-- The content -->
    Here is the article text...
<div>

If you don't need all that microdata information, you just disable that feature by calling: $microdata->enable(false);

<?php
$microdata = new JMicrodata('Product');
$microdata->enable(false);
?>

<div <?php echo $microdata->displayScope();?>>
    <!-- Author of the content -->
    <span>
        Written by <?php echo $microdata->content('Alexandru Pruteanu')->property('author')->fallback('Person', 'name')->display();?>
    </span>
    <!-- The content -->
    <?php echo $microdata->content('Here is the article text...')->property('articleBody')->display();?>
<div>

The library will display the following:

<div>
    <!-- Author of the content -->
    <span>
        Written by Alexandru Pruteanu
    </span>
    <!-- The content -->
    Here is the article text...
<div>

JMicrodata documentation[edit]

All Microdata HTML output is handled by the JMicrodata class.

JMicrodata::htmlScope($scope);
Return:

itemscope itemtype="http://schema.org/$scope"

the HTML Scope of the given Type, must be inside a HTML tag element.


JMicrodata::htmlProperty($property);
Return:

itemprop="$property"

the HTML of the given Property, must be inside a HTML tag element.


JMicrodata::htmlSpan($content, $property = "", $scope = "", $inverse = false);
Return:

<span itemscope itemtype="http://schema.org/$scope itemprop="$property">
    $content
</span>

the microdata in a tag, there is also available a JMicrodata::htmlDiv() method with the same functionalities.


JMicrodata::htmlMeta($content, $property, $scope = "", $inverse = false);
Return:

<meta $property $scope content="$content">

the microdata in a <meta> tag with the content for machines, this method does not add the meta tag in the <head> section of the page.


$microdata = JMicrodata($type = "", $flag = true);
Create a new instance of the JMicrodata class and setup the current Type, the flag param is for enabling or disabling HTML microdata semantics output. Fallback to Thing Type if the Type isn't available or given.


$microdata->enable($flag = true);
Enable or Disable HTML Microdata semantics output.


$microdata->isEnabled();
Return true if Microdata semantics HTML output are enabled.


$microdata->setType($type);
Set a new Schema.org Type, there is also a $microdata->getType() function to retrieve the current Type.


$microdata->property($name);
Setup the Property if available in the current Type Scope, there is also a $microdata->getProperty() function to retrieve the current Property.


$microdata->content($value, $machineValue = null);
Setup a Text value or Content value for the Microdata, there is also a $microdata->getContent() function to retrieve the current Text value.


$microdata->fallback($type, $property);
Setup a Fallback Type and Property, there are also the $microdata->getFallbackType() and $microdata->getFallbackProperty() to retrieve the Fallback Type and Fallback Property. Fallback to Thing Type if the Type isn't available, Fallback to null the Property if isn't available.


$microdata->displayScope();
Return:

itemscope itemtype="http://schema.org/$scope

the HTML with the Scope of the current Type, must be inserted inside a tag element.


$microdata->display($displayType = "", $emptyOutput = false);
Return the Microdata HTML, if the Property isn't available it checks for a Fallback, otherwise return .

There are 4 types of $displayType:

  • inline
  • span
  • html
  • meta

This method contains the HTML Microdata display logic, If you specify the $displayType param, the Microdata will be returned the way you specified and expect — to, Otherwise if the $displayType param is empty it will be processed by the display() method and returned the HTML in the right way, with the expected Property Type (example of expectedTypes = URL, Text, Person ...)

— What happens if you call display($displayType = "meta") ?
The returned HTML will be inside a <meta> HTML tag.

— What happend if you call display()?
The method will automatically check the expected type for the given Property, and will return the right Microdata HTML.

There are 3 types of Microdata:

  • nested → example:
    itemprop="$property" itemscope itemtype="http://schema.org/$scope
    ", if there is also available a $content it will output
    <span itemprop="$property" itemscope itemtype="http://schema.org/$scope">$content</span>
  • meta → example:
    <meta content="$content" itemprop="$property">
    , if no $content is available will output
    itemprop="$property"
  • normal → example:
    itemprop="$property"
    , if there is available a $content will output
    <span itemprop="$property">$content</span>


For some usage examples you can see the library test file https://github.com/joomla/joomla-cms/blob/master/tests/unit/suites/libraries/joomla/microdata/JMicrodataTest.php

How To implement Microdata yourself[edit]