I created a page template template in Wordpress for the site I'm doing. However after opening a page already created the option to select the created template does not appear. Could you help me?
Icreatedafilecalledpaginageral.phpaccordingtothecodexinstructions
<?php
/*
Template Name: Página Geral
*/
?>
<?php get_header(); ?>
<div class="conteudo">
<main>
<section class="meio container">
<div class="noticias">
<p>Esta é a estrutura de paginas gerais</p>
</div>
</section>
</main>
</div>
<?php get_footer(); ?>