@@ 216-242 (lines=27) @@ | ||
213 | } |
|
214 | ||
215 | // copied from class.json-api-endpoints.php |
|
216 | public function is_post_type_allowed( $post_type ) { |
|
217 | // if the post type is empty, that's fine, WordPress will default to post |
|
218 | if ( empty( $post_type ) ) { |
|
219 | return true; |
|
220 | } |
|
221 | ||
222 | // allow special 'any' type |
|
223 | if ( 'any' == $post_type ) { |
|
224 | return true; |
|
225 | } |
|
226 | ||
227 | // check for allowed types |
|
228 | if ( in_array( $post_type, $this->get_whitelisted_post_types() ) ) { |
|
229 | return true; |
|
230 | } |
|
231 | ||
232 | if ( $post_type_object = get_post_type_object( $post_type ) ) { |
|
233 | if ( ! empty( $post_type_object->show_in_rest ) ) { |
|
234 | return $post_type_object->show_in_rest; |
|
235 | } |
|
236 | if ( ! empty( $post_type_object->publicly_queryable ) ) { |
|
237 | return $post_type_object->publicly_queryable; |
|
238 | } |
|
239 | } |
|
240 | ||
241 | return ! empty( $post_type_object->public ); |
|
242 | } |
|
243 | ||
244 | // copied from class.json-api-endpoints.php |
|
245 | /** |
@@ 1704-1730 (lines=27) @@ | ||
1701 | } |
|
1702 | } |
|
1703 | ||
1704 | function is_post_type_allowed( $post_type ) { |
|
1705 | // if the post type is empty, that's fine, WordPress will default to post |
|
1706 | if ( empty( $post_type ) ) { |
|
1707 | return true; |
|
1708 | } |
|
1709 | ||
1710 | // allow special 'any' type |
|
1711 | if ( 'any' == $post_type ) { |
|
1712 | return true; |
|
1713 | } |
|
1714 | ||
1715 | // check for allowed types |
|
1716 | if ( in_array( $post_type, $this->_get_whitelisted_post_types() ) ) { |
|
1717 | return true; |
|
1718 | } |
|
1719 | ||
1720 | if ( $post_type_object = get_post_type_object( $post_type ) ) { |
|
1721 | if ( ! empty( $post_type_object->show_in_rest ) ) { |
|
1722 | return $post_type_object->show_in_rest; |
|
1723 | } |
|
1724 | if ( ! empty( $post_type_object->publicly_queryable ) ) { |
|
1725 | return $post_type_object->publicly_queryable; |
|
1726 | } |
|
1727 | } |
|
1728 | ||
1729 | return ! empty( $post_type_object->public ); |
|
1730 | } |
|
1731 | ||
1732 | /** |
|
1733 | * Gets the whitelisted post types that JP should allow access to. |