Changing breadcrumb separator/delimiter (from "»" to "/")
I want to change breadcrumb separator/delimiter character (from "»" to "/"). How can I do that from inside a child theme (i.e. without modifying the ClassiPress theme)?
I see the function
cp_breadcrumb() in
includes/theme-functions.php. In it, AppThemes defines a variable
$delimeter =
'»' (which is the HTML entity code for this character: "»").
With that code, my site shows breadcrumbs like this (I added color here for visual emphasis):
HOME » SECTION » SUB-SECTION » ...etc.
I want it to show breadcrumbs like this instead:
HOME / SECTION / SUB-SECTION / ...etc.