wp-exp-hooks.php in Export All Posts, Products, Orders & Users | WP Ultimate Exporter | WordPress CSV Export 2.0, at wp-exp-hooks.php
| 1 | <?php |
| 2 | /** |
| 3 | * WP Ultimate Exporter plugin file. |
| 4 | * |
| 5 | * Copyright (C) 2010-2020, Smackcoders Inc - info@smackcoders.com |
| 6 | */ |
| 7 | |
| 8 | namespace Smackcoders\SMEXP; |
| 9 | |
| 10 | if ( ! defined( 'ABSPATH' ) ) { |
| 11 | die; |
| 12 | } |
| 13 | |
| 14 | global $plugin_ajax_hooks; |
| 15 | |
| 16 | $plugin_ajax_hooks = [ |
| 17 | 'parse_data', |
| 18 | 'total_records', |
| 19 | 'get_post_types', |
| 20 | 'get_taxonomies', |
| 21 | 'get_authors' |
| 22 | ]; |