/** * Register series for post types * This function register the taxonomy so you can now start using it,…
// Change post series order from ASC to DESC function myprefix_post_series_query_args( $args ) { $args['order'] = 'DESC'; return $args; }…
/** * Change Post Series Archive Entry Style * Available options: large-image-entry-style, thumbnail-entry-style, grid-entry-style */ function my_post_series_entry_style( $style ) {…
// Change Post Series Archive Layout function my_alter_post_series_layout( $layout ) { if ( is_tax( 'post_series' ) ) { return 'full-width';…