Hi,
I’ve always used pro, child themes and custom templates.
Since v4.2.3, my custom template is not showing anymore in the list:
I created template-builder.php into /web/wp-content/themes/pro-child/framework/views/integrity/
But it’s not showing in the admin:
The template is really simple:
<?php
// =============================================================================
// VIEWS/INTEGRITY/TEMPLATE-BUILDER.PHP (Builder)
// -----------------------------------------------------------------------------
// A builder page for creating unique layouts.
// =============================================================================
get_header();
?>
<div class="x-main full" role="main">
<?php while (have_posts()) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
aa
</article>
<?php endwhile; ?>
</div>
<?php get_footer(); ?>