Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Last active February 12, 2017 14:25
Show Gist options
  • Save anthonybudd/f63a228da4bc0975c765c2a4101ac3e0 to your computer and use it in GitHub Desktop.
Save anthonybudd/f63a228da4bc0975c765c2a4101ac3e0 to your computer and use it in GitHub Desktop.
<?php
Class Product extends WP_Model
{
...
public $virtual = [
'humanWeight'
];
public $serialize = [
'humanWeight',
];
public $protected = [
'weight',
];
public function _getHumanWeight()
{
return $this->weight . 'Kg';
}
}
$product = Product::find(15);
echo json_encode($product);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment