Hi, thank to this filter we can organize custom post in column grid inside archive ‘pages’, including the archive author ‘page’.
add_filter( 'generate_blog_columns', function( $columns ) {
if ( 'my_custom_post' === get_post_type() && ! is_singular() ) {
return true;
}
return $columns;
} );
Maybe I missed something, but it appears the author biography (author-info) when it exists, is wrapped inside the generate-columns-container. Could you please check it and let me know if there is something we can do for that ?
Check => https://blockchainyourart.gatcom.fr/community/vernon/
Alternativement, I can easily add the author bio within my block hook element (gb-author-cover), but in that case, I would like to remove (no css!) the existing author biography (“author-info”).
Any ideas ?