Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Last active June 21, 2017 12:34
Show Gist options
  • Save anthonybudd/64dcc0b4761fa7921f3b8812b8144a16 to your computer and use it in GitHub Desktop.
Save anthonybudd/64dcc0b4761fa7921f3b8812b8144a16 to your computer and use it in GitHub Desktop.
<?php
Class Product extends WP_Model{
...
public $filter = [
'weight' => 'intval'
];
}
$product = Product::insert([
'weight' => '250',
]);
echo $product->weight; // (int) 250
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment