'; bcn_display(); echo ''; } add_action( 'blograzzi_top_content', 'blograzzi_breadcrumb_navxt' ); endif; /** * Add 'nodate' class for bbPress user home */ if ( class_exists( 'bbPress' ) ) : function blograzzi_bbpress_post_class( $classes ){ if ( bbp_is_user_home() ) $classes[] = 'nodate'; return $classes; } add_filter( 'post_class', 'blograzzi_bbpress_post_class' ); endif; /* WP e-Commerce compat stuffs */ if ( function_exists( 'is_products_page' ) ) : /** * Disable child page listing for Products page */ function blograzzi_wpsc_disable_child(){ if ( ! is_products_page() ) return; global $blograzzi_settings; $blograzzi_settings['child_page_listing'] = 'hide'; } add_action( 'wp_head', 'blograzzi_wpsc_disable_child' ); endif;