Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Last active February 11, 2017 17:03
Show Gist options
  • Save anthonybudd/a03c082adf517587aac0a7a732550d01 to your computer and use it in GitHub Desktop.
Save anthonybudd/a03c082adf517587aac0a7a732550d01 to your computer and use it in GitHub Desktop.
WP_Model class
<?php
Class Product extends WP_Model
{
public $postType = 'product';
public $attributes = [
'color',
'weight',
'seller_id'
];
// Optional
public $taxonomies = [
'category',
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment