fork download
  1. <?php
  2.  
  3. // ORDEN MENU ADMINISTRADOR
  4.  
  5. function reorder_admin_menu( $__return_true ) {
  6. return array(
  7. 'index.php', // Dashboard
  8. 'separator1', // --Space--
  9. 'edit.php?post_type=archivo', // Ejemplo custom
  10. 'edit.php?post_type=licitaciones', // Ejemplo custom
  11. 'edit.php?post_type=maps', // Ejemplo custom
  12. 'edit.php?post_type=turismo', // Ejemplo custom
  13. 'separator2', // --Space--
  14. 'edit.php?post_type=page', // Pages
  15. 'edit.php', // Posts
  16. 'upload.php', // Media
  17. 'themes.php', // Appearance
  18. 'edit-comments.php', // Comments
  19. 'users.php', // Users
  20. 'plugins.php', // Plugins
  21. 'tools.php', // Tools
  22. 'options-general.php', // Settings
  23. );
  24. }
  25. add_filter( 'custom_menu_order', 'reorder_admin_menu' );
  26. add_filter( 'menu_order', 'reorder_admin_menu' );
  27.  
Runtime error #stdin #stdout #stderr 0.02s 52472KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Fatal error:  Call to undefined function add_filter() in /home/FzTIfY/prog.php on line 25