@ardinotow, tx for this helper. I am trying it out and i like it so far, but
somehow i don’t get the last segment to show in the breadcrumbs.
like
mydomain.com/south/jobs/hiring-a-plumber-4.html
the breadcrumbs show
home >> area >> south
but i like to show
home >> area >> south >> hiring a plumber
i am using
$routes[‘mydomain.com/south/jobs/:any’]
Any tips?
ps
$uri_array_original = explode("/", $uri);
print_r($uri_array_original);
outputs
Array ( [0] => [1] => south[2] => jobs[3] => hiring-a-plumber-4.html )
ok i think it has to do with
if (preg_match("/^([a-z_-])+$/i", $value))
i change it so /2010 is displayed
if (preg_match("/^([0-9|a-z_-])+$/i", $value))
but it doesn’t work for hiring-a-plumber-4.html