Difference between revisions of "Microdata"

From Joomla! Documentation

(Added roadmap from 3.4 announcement)
(28 intermediate revisions by 2 users not shown)
Line 2: Line 2:
  
 
==What is Microdata?==
 
==What is Microdata?==
 
{{underconstruction}}
 
 
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.
 
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.
  
Line 9: Line 7:
  
 
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>
 +
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>
 +
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.
 +
 +
==JMicrodata==
 +
[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 library was designed with this goals in mind:
 +
# Having the '''possibility to switch the Microdata Type dynamically''', you just change the Type (there are 558 different available types).
 +
# '''Display validated semantics''', the library takes care to display data correctly.
 +
# '''Enable/disable the microdata''' semantics.
 +
# '''Fallbacks''', you should never lose any meaningful semantic.
 +
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.
 +
 +
==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">
 +
<?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>
  
As of Joomla! 3.2 there is a library within Joomla! which allows developers to pull in microdata without needing to format it correctly. The following resources are available by the author of the microdata library introducing the library and how to use it:
+
==JMicrodata documentation==
<br />
+
All Microdata HTML output is handled by the JMicrodata class.
http://magazine.joomla.org/issues/issue-oct-2013/item/1551-what-about-microdata-rich-snippets-in-joomla
+
<br>
<br />
+
<br>
https://gist.github.com/PAlexcom/6339949
+
<code>'''JMicrodata::htmlScope($scope);'''</code><br>
 +
Return:
 +
<source lang="php">
 +
itemscope itemtype="http://schema.org/$scope"
 +
</source>
 +
the HTML <i>Scope</i> of the given <i>Type</i>, must be inside a HTML tag element.
 +
<br>
 +
<br>
 +
<br>
 +
<code>'''JMicrodata::htmlProperty($property);'''</code><br>
 +
Return:
 +
<source lang="php">
 +
itemprop="$property"
 +
</source>
 +
the HTML of the given <i>Property</i>, must be inside a HTML tag element.
 +
<br>
 +
<br>
 +
<br>
 +
<code>'''JMicrodata::htmlSpan($content, $property = "", $scope = "", $inverse = false);'''</code><br>
 +
Return:
 +
<source lang="php">
 +
<span itemscope itemtype="http://schema.org/$scope itemprop="$property">
 +
    $content
 +
</span>
 +
</source>
 +
the microdata in a <span> tag, there is also available a JMicrodata::htmlDiv() method with the same functionalities.
 +
<br>
 +
<br>
 +
<br>
 +
<code>'''JMicrodata::htmlMeta($content, $property, $scope = "", $inverse = false);'''</code><br>
 +
Return:
 +
<source lang="php">
 +
<meta $property $scope content="$content">
 +
</source>
 +
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>
 +
<code>'''$microdata = JMicrodata($type = "", $flag = true);'''</code><br>
 +
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>
 +
<code>'''$microdata->enable($flag = true);'''</code><br>  
 +
Enable or Disable HTML Microdata semantics output.
 +
<br>
 +
<br>
 +
<br>
 +
<code>'''$microdata->isEnabled();'''</code><br>
 +
Return true if Microdata semantics HTML output are enabled.
 +
<br>
 +
<br>
 +
<br>
 +
<code>'''$microdata->setType($type);'''</code><br>
 +
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>
 +
<code>'''$microdata->property($name);'''</code><br>
 +
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>
 +
<code>'''$microdata->content($value, $machineValue = null);'''</code><br>
 +
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>
 +
<code>'''$microdata->fallback($type, $property);'''</code>
 +
<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.
 +
<br>
 +
<br>
 +
<br>
 +
<code>'''$microdata->displayScope();'''</code><br>
 +
Return:
 +
<source lang="php">
 +
itemscope itemtype="http://schema.org/$scope
 +
</source>
 +
the HTML with the <i>Scope</i> of the current <i>Type</i>, must be inserted inside a tag element.
 +
<br>
 +
<br>
 +
<br>
 +
<code>'''$microdata->display($displayType = "", $emptyOutput = false);'''</code><br>
 +
Return the Microdata HTML, if the <i>Property</i> isn't available it checks for a Fallback, otherwise return ''.
 +
<br>
 +
<br>
 +
There are 4 types of $displayType:
 +
* inline
 +
* span
 +
* html
 +
* meta
 +
<u>This method contains the HTML Microdata display logic</u>,
 +
If you specify the <i>$displayType</i> param, the Microdata will be returned the way you specified and expect — to,
 +
Otherwise if the <i>$displayType</i> param is empty it will be processed by the <i>display()</i> method and returned the HTML in the right way, with the expected <i>Property</i> Type (example of expectedTypes = URL, Text, Person ...)
 +
<br>
 +
<br>
 +
— What happens if you call display($displayType = "meta") ?
 +
<br>
 +
The returned HTML will be inside a <meta> HTML tag.
 +
<br>
 +
<br>
 +
— What happend if you call display()?
 +
<br>
 +
The method will automatically check the expected type for the given Property, and will return the right Microdata HTML.
 +
<br>
 +
<br>
 +
There are 3 types of Microdata:
 +
* 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">
 +
<span itemprop="$property" itemscope itemtype="http://schema.org/$scope">$content</span></source>
 +
* meta → example: <source lang="php">
 +
<meta content="$content" itemprop="$property"></source>, if no $content is available will output <source lang="php">
 +
itemprop="$property"</source>
 +
* normal → example: <source lang="php">
 +
itemprop="$property"</source>, if there is available a $content will output <source lang="php">
 +
<span itemprop="$property">$content</span></source>
 +
<br>
 +
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==
 
==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]