Page template does not appear - Wordpress

0

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(); ?>
    
asked by anonymous 23.11.2018 / 13:45

1 answer

0

You need an index.php file in the theme to work this function, even if the index file is empty

    
23.11.2018 / 21:03