Make last beardcrumb a link
-
Hey guys, what im trying to achieve is that on a single post page in breadcrumbs i want to show only home page and a parent categorys name. Both clickable. I have removed a post title with this snippet:
add_filter( 'wpseo_breadcrumb_links', 'removelast_wpseo_breadcrumb_links' ); function removelast_wpseo_breadcrumb_links( $links ) { if( sizeof($links) > 1 ){ array_pop($links); } return $links; }
and since categorys name is the last item now its not a link anymore. How can i make it a link again and not a span?
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Make last beardcrumb a link’ is closed to new replies.