Home / Admin / Allow Templatera Templates to be used for Dynamic Templates
Duplicate Snippet

Embed Snippet on Your Site

Allow Templatera Templates to be used for Dynamic Templates

In Total 5.9 with the introduction of the built in Dynamic Template post type we removed the ability to select Templatera templates for your dynamic templates. This was done to greatly slim things down and optimize the admin UI. But if you wish to use Templatera templates you can re-enable them to be selected with the following snippet.

Code Preview
php
<?php
add_filter( 'totaltheme/theme-builder/template_post_types', function( array $types ): array {
    $types['templatera'] = 'Templatera';
    return $types;
} );

Comments

Add a Comment