Keine Beschreibung

Posts.php 665B

1234567891011121314151617181920212223242526
  1. <?php
  2. /*******************************************************************************
  3. * Copyright (c) 2019, Code Atlantic LLC
  4. ******************************************************************************/
  5. if ( ! defined( 'ABSPATH' ) ) {
  6. exit;
  7. }
  8. /**
  9. * Second-level interface for registering a batch process that leverages
  10. * pre-fetch and data storage.
  11. *
  12. * @since 1.7.0
  13. */
  14. interface PUM_Interface_Upgrade_Posts extends PUM_Interface_Batch_PrefetchProcess {
  15. /**
  16. * Used to filter popup query based on conditional info.
  17. *
  18. * @return array Returns an array of popup post type query args for this upgrade.
  19. */
  20. public function custom_query_args();
  21. }