equal
deleted
inserted
replaced
34 public function __construct( $post_type ) { |
34 public function __construct( $post_type ) { |
35 $this->post_type = $post_type; |
35 $this->post_type = $post_type; |
36 } |
36 } |
37 |
37 |
38 /** |
38 /** |
39 * Retrieves the object meta type. |
39 * Retrieves the post meta type. |
40 * |
40 * |
41 * @since 4.7.0 |
41 * @since 4.7.0 |
42 * |
42 * |
43 * @return string The meta type. |
43 * @return string The meta type. |
44 */ |
44 */ |
45 protected function get_meta_type() { |
45 protected function get_meta_type() { |
46 return 'post'; |
46 return 'post'; |
47 } |
47 } |
48 |
48 |
49 /** |
49 /** |
50 * Retrieves the object meta subtype. |
50 * Retrieves the post meta subtype. |
51 * |
51 * |
52 * @since 4.9.8 |
52 * @since 4.9.8 |
53 * |
53 * |
54 * @return string Subtype for the meta type, or empty string if no specific subtype. |
54 * @return string Subtype for the meta type, or empty string if no specific subtype. |
55 */ |
55 */ |