Created
May 8, 2014 21:24
-
-
Save castroalves/4927be8115b75a0b694b to your computer and use it in GitHub Desktop.
Post Type Realizações
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
/** | |
* 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