This repository is no longer maintained!
ImpressPages Plugin that adds a Breadcrumb Slot.
- Download .zip
- Unpack
- Copy the
BreadcrumbSlot
directory to thePlugin
directory - Install the Plugin in the Plugin Manager
- Add the Slot to your Theme
<?php
echo ipSlot('breadcrumbs');
?>
Example Usage
<?php
$params = array(
'pageId' => ipContent()->getCurrentPage()->getId(),
'separator' => ' ‹ ',
'direction' => 'up'
);
echo ipSlot('breadcrumbs', $params);
?>
Example
<?php
$params = array(
'pageId' => 31
);
echo ipSlot('breadcrumbs', $params);
?>
Example
<?php
$params = array(
'pageId' => ' ‹ '
);
echo ipSlot('breadcrumbs', $params);
?>
Allowed Values
'down'
, 'up'
Example
<?php
$params = array(
'direction' => 'up'
);
echo ipSlot('breadcrumbs', $params);
?>
Allowed Values
'text'
, 'html'
Example
<?php
$params = array(
'mode' => 'html'
);
echo ipSlot('breadcrumbs', $params);
?>
Bread Icon made by Freepik from Flaticon is licensed under CC BY 3.0.