Home › Forums › Support › Blog Addon column layout This topic has 1 reply, 2 voices, and was last updated 7 years, 4 months ago by Tom. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts May 10, 2016 at 4:46 am #193206 Xavi Colomer Hi Tom, its possible to implement column layout in a custom post type archive template? thanks May 10, 2016 at 8:23 am #193261 TomLead Developer Lead Developer It should be, try this: add_filter( 'generate_blog_columns','generate_custom_post_archive_columns' ); function generate_custom_post_archive_columns() { if ( is_post_type_archive( 'my-post-type' ) ) { return true; } return $columns; } Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/ Something like that should work. Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In