Blog Addon column layout

Home Forums Support Blog Addon column layout

Home Forums Support Blog Addon column layout

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #193206
    Xavi Colomer

    Hi Tom,
    its possible to implement column layout in a custom post type archive template?

    thanks

    #193261
    Tom
    Lead 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.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.