Changeset 2097557
- Timestamp:
- 05/29/2019 10:40:54 PM (7 years ago)
- Location:
- schema-breadcrumbs
- Files:
-
- 6 added
- 2 edited
-
tags/1.4.7 (added)
-
tags/1.4.7/WDPanelAdmin.css (added)
-
tags/1.4.7/WDPanelAdmin.php (added)
-
tags/1.4.7/readme.txt (added)
-
tags/1.4.7/schema-breadcrumbs.php (added)
-
tags/1.4.7/script_link.png (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/schema-breadcrumbs.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
schema-breadcrumbs/trunk/readme.txt
r2087704 r2097557 5 5 Requires at least: 2.2 6 6 Tested up to: 5.1.1 7 stable tag: 1.4. 67 stable tag: 1.4.7 8 8 9 9 Very easily add breadcrumbs to your site with valid Schema Breadcrumb Markup, this plugin is also a drop-in replacement for RDFa Breadcrumb, just install this and deactivate RDFa Breadcrumb. … … 31 31 32 32 == Changelog == 33 34 = 1.4.7 = 35 * fixed small issue in schema. 33 36 34 37 = 1.4.6 = -
schema-breadcrumbs/trunk/schema-breadcrumbs.php
r2087704 r2097557 3 3 Plugin URI: http://webdesires.co.uk 4 4 Description: Outputs a fully Schema valid breadcrumb 5 Version: 1.4. 65 Version: 1.4.7 6 6 Author: Dean Williams 7 7 Author URI: http://deano.me … … 692 692 "itemListElement": 693 693 [ 694 <?php $c=0; foreach ($schema as $breadcrumb) { $c++; if ($c > 1) { echo ',';}694 <?php $c=0; foreach ($schema as $breadcrumb) { if ($breadcrumb == '') {continue;} $c++; if ($c > 1) { echo ',';} 695 695 echo $breadcrumb; 696 696 } ?>
Note: See TracChangeset
for help on using the changeset viewer.