Skip to content

Instantly share code, notes, and snippets.

@RodolfoSilva
Last active August 29, 2015 14:11
Show Gist options
  • Save RodolfoSilva/e3df03fb62377cac3b98 to your computer and use it in GitHub Desktop.
Save RodolfoSilva/e3df03fb62377cac3b98 to your computer and use it in GitHub Desktop.
<?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