admin_menu.php
14 years ago
admin_notices.php
14 years ago
delete_post.php
14 years ago
wp_loaded.php
14 years ago
wp_loaded.php
9 lines
| 1 | <?php |
| 2 | |
| 3 | function pmxi_wp_loaded() { |
| 4 | |
| 5 | ini_set("max_input_time", PMXI_Plugin::getInstance()->getOption('max_input_time')); |
| 6 | ini_set("max_execution_time", PMXI_Plugin::getInstance()->getOption('max_execution_time')); |
| 7 | |
| 8 | wp_enqueue_script('pmxi-script', PMXI_Plugin::getInstance()->getRelativePath() . '/static/js/pmxi.js', array('jquery')); |
| 9 | } |