Last active
August 29, 2015 14:11
-
-
Save RodolfoSilva/e3df03fb62377cac3b98 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
public function themeOptionsPage() | |
{ | |
// Carrega as opções | |
$this->options = get_option($this->name_id); | |
?> | |
<div class="wrap"> | |
<h2><?php echo $this->title ?></h2> | |
<p>Pequena descrição sobre o tema e o painel de configurações do tema</p> | |
<form method="post"> | |
<?php | |
// Exibe todosos campos e o botão para salvar as alterações | |
settings_fields('theme_config'); | |
do_settings_sections($this->name_id); | |
submit_button(); | |
?> | |
</form> | |
</div> | |
<?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment