mtekk's Crib

Breadcrumb NavXT has hit a feature freeze for 4.1.0. The only things left to do for the next release is some documentation updates, regression testing, and updating translations. Tomorrow the translation team will be notified of the two week window to get their translations updated (only 4 new strings) before 4.1.0 is released.

Try the latest Breadcrumb NavXT testing release from the Breadcrumb NavXT SVN Trunk.

WP Lynx has also hit a feature freeze for 0.5.0. Open Graph support has been added and all that is left to do is figure out the cause of a few ugly bugs that seem to only appear on my testbed. Additionally, one extra warning message needs to be added to the lynx print adding screen when thumbnails are disabled. See the WP-Lynx 0.5.0 milestone issue list.

Try the latest WP Lynx testing release from the WP Lynx SVN Trunk.

Expect the release of Breadcrumb NavXT 4.1.0 during the last week of May. As for WP Lynx 0.5.0, expect that some time in the first week of June.

-John Havlik

[end of transmission, stay tuned]

April 8th, 2012

Has it really been over a year since 0.3.0? This release does not contain a ton of new features, but rather some bug fixes, and other updates that allows it to play nicer with WordPress 3.3. There is a new help menu, with some useful information on the settings page. Content filtering has been improved so that it is less likely that junk will get scraped.

Per the roadmap, the real interesting release will be 0.5.0, which will support the relevant portions of Facebook’s Open Graph format. Look for that release in the early summer.

-John Havlik

[end of transmission, stay tuned]

Tagged: 2 Comments
March 8th, 2012

It has been over a year since WP Lynx has seen an update. Last December I meant to release 0.4.0, but fell behind on other projects. 0.4.0 is still going to be released, and the plan is sometime in April. There are several bug fixes and tweaks that improve the user experience within WordPress 3.3+. After 0.4.0 will come 0.5.0.

Slated for the 0.5.0 release is the introduction of support for the relevant portions of Facebook’s Open Graph format. Several behind the scenes changes are slated as WP Lynx will be the test platform for the development of the next version of mtekk_adminKit. Expect 0.5 to show up sometime this summer.

-John Havlik

[end of transmission, stay tuned]

Unlike Google’s Breadcrumb micodata format, Schema.org’s microdata format for breadcrumbs is very easy to implement. There is no need for nested tags, or overly verbose and redundant tags. Instead, there is just two modifications from the standard Breadcrumb NavXT setup.

Breadcrumbs are a property of the Schema.org WebPage CreativeWork type. The first thing you must do to use the Schema.org microdata is declare the body of the (x)HTML page to be of type WebPage. You’ll need to modify your current WordPress theme so that the opening body tag is:

<body itemscope itemtype="http://schema.org/WebPage">

Once we’ve declared our body to be of type WebPage, all we have to do is include itemprop=”breadcrumb” in the div wrapping around the breadcrumb trail. For example, we’d use:

<div itemprop="breadcrumb" class="breadcrumbs">
    <?php if(function_exists('bcn_display'))
    {
        bcn_display();
    }?>
</div>

That’s it! Note that this does not work with the included widget in 4.0.1, and is something that will be changed for the next release.

-John Havlik

[end of transmission, stay tuned]

January 3rd, 2012

This is the first bug fix release of the 4.0 branch of Breadcrumb NavXT. There were two issues fixed in this release. The first was the line 591 and line 646 errors in multisite installs. The second bug involves attachments of custom post types, they will now obey the root page setting for that post type. Additionally, this is the first version of Breadcrumb NavXT to include a Norwegian translation, props to Jan Rosvoldsve.

You can grab the latest version of Breadcrumb NavXT from the Breadcrumb NavXT page.

-John Havlik

[end of transmission, stay tuned]

Page 1 of 27123456782627Next »