Guest User

Untitled

a guest
Jul 17th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function phptemplate_breadcrumb($breadcrumb) {
  2. if (!empty($breadcrumb)) {
  3. return implode(' › ', $breadcrumb);
  4. }
  5. }
  6.  
  7. function phptemplate_preprocess_page($variables) {
  8. $breadcrumb[] = $variables["breadcrumb"];
  9. $breadcrumb[] = $variables["title"];
  10. $variables["breadcrumb"] = implode(' › ', $breadcrumb);
  11. }
Add Comment
Please, Sign In to add comment