Skip to content

Instantly share code, notes, and snippets.

@castroalves
Created May 8, 2014 21:24
Show Gist options
  • Save castroalves/4927be8115b75a0b694b to your computer and use it in GitHub Desktop.
Save castroalves/4927be8115b75a0b694b to your computer and use it in GitHub Desktop.
Post Type Realizações
/**
* Post Type Realizações
*/
function odin_realizacao_cpt() {
$realizacoes = new Odin_Post_Type(
'Realizações',
'realizacao'
);
$realizacoes->set_labels(
array(
'menu_name' => __( 'Realizações', 'odin' )
)
);
$realizacoes->set_arguments(
array(
'supports' => array( 'title', 'editor', 'thumbnail' ),
)
);
}
add_action( 'init', 'odin_realizacao_cpt', 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment