use Rareloop\Lumberjack\Post;
class Product extends Post
* Return the key used to register the post type with WordPress
* First parameter of the `register_post_type` function:
* https://codex.wordpress.org/Function_Reference/register_post_type
public static function getPostType()
* Return the config to use to register the post type with WordPress
* Second parameter of the `register_post_type` function:
* https://codex.wordpress.org/Function_Reference/register_post_type
protected static function getPostTypeConfig()
'name' => __('Products'),
'singular_name' => __('Product'),
'add_new_item' => __('Add New Product'),