Staff Category Description Above Loop
function my_staff_tax_description_above_loop( $bool ) {
if ( is_tax( 'staff_category' ) ) {
return true;
}
return $bool;
}
add_filter( 'wpex_has_term_description_above_loop', 'my_staff_tax_description_above_loop' );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend Code Snippets)