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 | |
// Powerful Code Snippets (will there be 10?) | |
add_action( 'init', 'puwwp_register_post_type' ); | |
/** | |
* Registering a custom post type provides many out of | |
* the box defaults new types of content. | |
*/ | |
function puwwp_register_post_type() { | |
$labels = array(); // array of labels |