NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223
  1. <?php
  2. class P2P_Side_Attachment extends P2P_Side_Post {
  3. protected $item_type = 'P2P_Item_Attachment';
  4. function __construct( $query_vars ) {
  5. $this->query_vars = $query_vars;
  6. $this->query_vars['post_type'] = array( 'attachment' );
  7. }
  8. function can_create_item() {
  9. return false;
  10. }
  11. function get_base_qv( $q ) {
  12. return array_merge( parent::get_base_qv( $q ), array(
  13. 'post_status' => 'inherit'
  14. ) );
  15. }
  16. }