MediaWiki extensions manual
RDFaBreadcrumbs
Release status: stable
Implementation User interface, Parser function
Description Allows users to include breadcrumbs on pages which will get RDFa markup
Author(s) Hendrik Brummermanntalk
MediaWiki
Database changes No
License Creative Commons Attribution 3.0
Download https://sourceforge.net/p/nikitools/RDFaBreadcrumbs
Hooks used
  • ParserFirstCallInit

The RDFa Breadcrumbs extension allows users to include breadcrumbs on pages which will get RDFa markup. It does not depend on categories but allows the definition on the individual pages.

Usage

{{#breadcrumbs:
   [[Main Page]]
   | {{ll|Manual:Extensions|Extensions}}
   | [[Extension:RDFa Breadcrumbs|RDFa Breadcrumbs]]
   | ... }}

This will look like this:

Main Page > Extensions > RDFa Breadcrumbs

In addition it will include RDFa markup so that Google will recognize it as Breadcrumb.

Installation

  • Glone the Git Repository https://sourceforge.net/p/nikitools/RDFaBreadcrumbs/ and place the file(s) in a directory called RDFaBreadcrumbs in your extensions/ folder.
  • Add the following code at the bottom of your LocalSettings.php file:
    wfLoadExtension( 'RDFaBreadcrumbs' );
    
  • Edit [[MediaWiki:common.css]] and add the following section at the end:
.breadcrumbs {
   clear: both;
   border:1px solid #AAAAAA;
   background-color:#F9F9F9;
   padding:5px;
}
  • Yes Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.