Via child theme’s style.css, hide it visually keeping SEO, but the code is still there in the page.
.breadcrumbs { position: absolute !important; clip: rect(1px 1px 1px 1px); /* IE7 */ clip: rect(1px, 1px, 1px, 1px); }
Or
via child theme’s functions.php, remove the code entirely.
add_filter( 'breadcrumb_trail', '__return_false' );
Hey Paul… thank you…
what means child-theme for this?
i only have the free theme “Oxygen”…
i have cleared the code in functions.php from:
/* Add the breadcrumb trail just after the container is open. */
add_action( “{$prefix}_open_content”, ‘breadcrumb_trail’ );
/* Breadcrumb trail arguments. */
add_filter( ‘breadcrumb_trail_args’, ‘oxygen_breadcrumb_trail_args’ );
thats all..?
Do not edit the Oxygen theme itself. First create a child theme for your changes. Or install a custom CSS plugin.
Please review this doc on Child themes posted above.
In short, it’s the way to keep modifications separated from theme itself, so that when the theme updates, all the changes won’t be lost.
But if you don’t plan to make any other changes to the theme, except a bit of CSS here and there, this theme comes with its own Custom CSS option
Appearance > Customize > Misc > Custom CSS
Or you can use other Custom CSS plugins ( esmi linked to above ) that has more fancy things like code highlighting.
ok, nice to know about “child-theme”… sounds good…!!!
THANK YOU!!!