Skip to content

Instantly share code, notes, and snippets.

@gmmcal
Created September 17, 2014 12:09
Show Gist options
  • Save gmmcal/cfc2eb6288876219830a to your computer and use it in GitHub Desktop.
Save gmmcal/cfc2eb6288876219830a to your computer and use it in GitHub Desktop.
Criando um plugin para Wordpress usando Custom Post Types - Tutorial 2
add_action("init", "demonstracaoInit");
function demonstracaoInit() {
$d = new Demonstracao();
$d->init();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment