Created
March 11, 2018 19:10
-
-
Save anthonybudd/1116340df3fb53f905161a00020e4d5d to your computer and use it in GitHub Desktop.
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 | |
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