classes
8 years ago
compatibility
8 years ago
metaboxes
8 years ago
modules
10 years ago
admin-ajax.php
8 years ago
admin-hooks.php
8 years ago
admin-the-functions.php
8 years ago
index.php
8 years ago
index.php
25 lines
| 1 | <?php // load admin related classes & functions |
| 2 | |
| 3 | // load admin related functions |
| 4 | include_once( 'admin-the-functions.php' ); |
| 5 | |
| 6 | |
| 7 | do_action( 'auxels_admin_classes_loaded' ); |
| 8 | |
| 9 | // load admin related functions |
| 10 | include_once( 'admin-hooks.php' ); |
| 11 | |
| 12 | // init the class for extending the menu nav in back-end |
| 13 | Auxin_Master_Nav_Menu_Admin::get_instance(); |
| 14 | new Auxels_Archive_Menu_Links(); |
| 15 | |
| 16 | // custom permalink setting fields for custom post types |
| 17 | function auxin_init_permalinks( ){ |
| 18 | $aux_permalink = new Auxin_Permalink(); |
| 19 | $aux_permalink->setup(); |
| 20 | |
| 21 | new Auxin_Install(); |
| 22 | new Auxin_Admin_Dashboard(); |
| 23 | } |
| 24 | add_action( 'auxin_ready', 'auxin_init_permalinks' ); |
| 25 |