Advertisement
Guest User

Untitled

a guest
Dec 12th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: Nils Uploader
  4. Plugin URL: localhost/wordpress
  5. Description: Een simpele uploader
  6. Version: 0.1
  7. Author: Nils
  8. Author URL: amo1033727.wordpress.com
  9. License: GPL2
  10. License URL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
  11. Text Domain: Nils Uploader
  12. Domain Path: /
  13.  
  14. {Nils Uploader} is free software: you can redistribute it and/or modify
  15. it under the terms of the GNU General Public License as published by
  16. the Free Software Foundation, either version 2 of the License, or
  17. any later version.
  18.  
  19. {Nils Uploader} is distributed in the hope that it will be useful,
  20. but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. GNU General Public License for more details.
  23.  
  24. You should have received a copy of the GNU General Public License
  25. along with {excelPlugin}. If not, see {https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html}.
  26. */
  27.  
  28. function register_custom_menu_page() {
  29. add_menu_page('Nils Uploader', 'Nils Uploader ', 'add_users', 'custompage', '_custom_menu_page', null, 6);
  30. }
  31.  
  32. add_action('admin_menu', 'register_custom_menu_page');
  33.  
  34. function _custom_menu_page(){
  35. include_once 'index.php';
  36. }
  37. // //
  38. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement