Skip to content

Instantly share code, notes, and snippets.

@Glinkfr
Created November 23, 2022 06:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Glinkfr/e53f70308f425bd7615e21542306ccba to your computer and use it in GitHub Desktop.
Save Glinkfr/e53f70308f425bd7615e21542306ccba to your computer and use it in GitHub Desktop.
Creation d'un shortcode wordpress pour pour utiliser le fil d'Ariane du plugin NavXT Breadcrumb
function glink_bcn() {
echo '<div class="breadcrumbs" typeof="BreadcrumbList" vocab="https://schema.org/">';
echo bcn_display() . '</div>';
}
add_shortcode('glink_bcn', 'glink_bcn');
@Glinkfr
Copy link
Author

Glinkfr commented Nov 23, 2022

le shortcode à afficher sur vos pages : [glink_bcn]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment