It looks like you're new here. If you want to get involved, click one of these buttons!
$menu = array(
[home] => Home
[plan] => Plan Details
[savings] => Build Savings
[savings/<subcategory>] => Array
(
[label] => Make the Most of the 401(k)
[parent_id] => savings
[location] => savings
)
[savings/<subcategory>/<individual_page>] => Array
(
[label] => Contribution Calculator
[location] => /tools/<page_name>
[parent_id] => savings/<subcategory>
)
[savings/<subcategory>/<individual_page2>] => Array
(
[label] => Take Home Pay Calculator
[location] => /tools/<page_name>
[parent_id] => savings/<subcategory>
)
[spend] => Spend Wisely
[spend/<subcategory>] => Array
(
[label] => Save Money on the Things You Need
[parent_id] => spend
[location] => spend
)
[spend/<subcategory>/<individual_page>] => Array
(
[label] => Flexible Spending Account Tax Savings Calculator
[location] => /tools/<page_name>
[parent_id] => spend/<subcategory>
)
)
echo $this->menu->render($menu, NULL, NULL, 'basic');
$this->menu->active = '/savings/<subcategory>';
$this->menu->depth = 3;
echo $this->menu->render_breadcrumb($menu);
or
echo $this->menu->render($menu,NULL, NULL,'breadcrumb');
<ul>
<li><a href="<location>">Home</a></li>
</ul>
<ul>
<li><a href="http://lsifinancial.beta.weduhosting.com/">Home</a> <span class="arrow"> > </span> </li>
<li><subcategory label></li>
</ul>
Comments
Wish I could delete this post.