Translations of this page?:
General
Getting Support
Administration
Design
Wolf Reference
Plugin Development
Core Development
- Design documents
- Working guidelines
- References
Press, Graphics and Translations
Wolf CMS books section
display a breadcrumb
Wolf has a small and simple piece of code ready-made for displaying breadcrumbs:
<?php echo $this->breadcrumbs(); ?>
Put it in your Layout where you want the breadcrumbs to appear.
If you want to use a different separator, do it like this:
<?php echo $this->breadcrumbs('-'); ?>
You can use any symbol you like as the separator (plus, minus, colon, semicolon, etc.), as long as you keep it between the quote marks inside the braces: ('here').
If you want to use a backslash as the separator, it needs to be “escaped”, that is, written twice:
$this->breadcrumbs('\\');
Except where otherwise noted, content on this wiki is licensed under the following license:GNU Free Documentation License 1.2
