Removing breadcrumbs with $args
-
I bought a very complicated theme haha and I’m trying to remove breadcrumbs from all pages but I’m not sure what my “$args” should be
/** * Breadcrumb trail arguments. * * @since 0.1 */ function proxima_breadcrumb_trail_args( $args ) { $args['before'] = ''; $args['separator'] = ' / '; $args['front_page'] = false; return $args; }
I’m thinking I can just do this but it’s not working?? Any suggestions??
/** * Breadcrumb trail arguments. * * @since 0.1 */ function proxima_breadcrumb_trail_args( $args ) { $args['before'] = ''; $args['separator'] = ' / '; $args['front_page'] = false; $args[$is_page] = false; return $args; }
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Removing breadcrumbs with $args’ is closed to new replies.