|
1
|
<?php |
|
2
|
/** |
|
3
|
* Post storage
|
|
4
|
*
|
|
5
|
* @package Meta Box
|
|
6
|
*/ |
|
7
|
|
|
8
|
/** |
|
9
|
* Class RWMB_Post_Storage
|
|
10
|
*/ |
|
11
|
class RWMB_Post_Storage extends RWMB_Base_Storage { |
|
12
|
|
|
13
|
/** |
|
14
|
* Object type.
|
|
15
|
*
|
|
16
|
* @var string |
|
17
|
*/ |
|
18
|
protected $object_type = 'post'; |
|
19
|
} |
|
20
|
|