Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Created March 11, 2018 19:10
Show Gist options
  • Save anthonybudd/1116340df3fb53f905161a00020e4d5d to your computer and use it in GitHub Desktop.
Save anthonybudd/1116340df3fb53f905161a00020e4d5d to your computer and use it in GitHub Desktop.
<?php
Class Product extends WP_Model{
public $postType = 'product';
public $attributes = [
'color',
'weight'
];
}
Product::register();
$book = new Product;
$book->title = 'WordPress for dummies';
$book->color = 'Yellow';
$book->weight = 100;
$book->save();
$book = Product::find(1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment