Snippet: Change Post Series Archive Layout
// Change Post Series Archive Layout
function my_alter_post_series_layout( $layout ) {
if ( is_tax( 'post_series' ) ) {
return 'full-width';
}
return $layout;
}
add_filter( 'wpex_post_layout_class', 'my_alter_post_series_layout' );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend WPCode)