Reading Order: Series Index

LiteratureWhile this blog is mainly dedicated to Microsoft Dynamics 365 Business Central, I do post on other subjects and sometimes some really “off-topic” subjects.

I’m going to start posting a few reading order lists for various book series which I enjoy; this will give me one place that I can look if I am unsure of the reading order, and I figure it might as well be articles here, in case they are of use to other people.

These posts will be intermittent, but the series index, below, will automatically update as each article is published.

Reading Order
Terry Pratchett's Discworld Series

ClassicPress Plugins Available From azurecurve | Development in 2023: Breadcrumbs

ClassicPressIn this series of articles, I am going to introduce each of the plugins I have developed for ClassicPress, a hard-fork of WordPress, which was originally created to provide an alternative, yet compatible, CMS without the Gutenberg block editor.

The 5th plugin is Breadcrumbs.

Breadcrumbs
Allows breadcrumbs to be placed before and after the content on a post, page or other post type.

The getbreadcrumbs() function can be added to a theme template to position the breadcrumbs elsewhere on the page such as before the post heading; the [getbreadcrumbs] shortcode can also be used to place breadcrumbs.

Function usage, to avoid errors if the plugin is not active is:

if (function_exists(azrcrv_getbreadcrumbs)){
	echo azrcrv_getbreadcrumbs('arrow');
}

Shortcode usage is [getbreadcrumbs=arrow] or [getbreadcrumbs=text] to choose between arrow and text breadcrumbs.

The plugin supports both text based and arrow breadcrumbs; styles maintainable via the admin console.

Backward compatibility for those migrating from WordPress to ClassicPress has been maintained by retaining the azc_b_getbreadcrumbs() function..

This plugin is multisite compatible; each site will need settings to be configured in the admin dashboard.

Continue reading “ClassicPress Plugins Available From azurecurve | Development in 2023: Breadcrumbs”