hooks to change menu entries texts
-
Are there hooks to change the entries texts via functions.php? I’ve some special characters that I want to get ride of.
For example, I got ride of them on the breadcrumbs with this code:
add_filter( ‘woocommerce_get_breadcrumb’, ‘change_breadcrumb’ );
function change_breadcrumb( $crumbs ) {
$new_crumbs=array();
foreach ( $crumbs as $key => $crumb ) {
$new_crumbs[]=str_replace( ‘|’, ‘ ‘, $crumb );
}
return $new_crumbs;
}Is there something similar I can do to replace them on the responsive menu?
Thanks…
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘hooks to change menu entries texts’ is closed to new replies.