Big Brother Theme by Automattic: Category page broken
-
With the latest update to wordpress, this theme became broken. It was originally downloaded from wordpress.com for use on a selfhosted site (behind a firewall), and the wordpress.com support had no solution other than to punt us to www.remarpro.com support.
I have found the issue but cannot fix: the breadcrumb function no longer works. The page gets as far as starting to render the breadcrumbs but cannot complete. In order to get the site working, I have removed breadcrumbs from my child theme; however, it would be great if the functionality was restored. Note that the breadcrumbs on single pages still work.
The following function is broken:
function big_brother_the_breadcrumbs() . if ( is_category() ) { global $wp_query; $cat = get_category( $wp_query->get_queried_object()->term_id ); $cat_parents = get_category_parents( get_category( $cat->parent ), true, ‘<span class=”sep”></span>’ ); if ( 0 < $cat->parent && ! is_wp_error( $cat_parents ) ) echo ‘<span class=”breadcrumbs-ancestor cat-parents”>’ . $cat_parents . ‘</span>’; echo $before . single_cat_title( ”, false ) . $after; }
Anyone from Automattic have a comment?
The page I need help with: [log in to see the link]
- The topic ‘Big Brother Theme by Automattic: Category page broken’ is closed to new replies.