Advertisement
Digitalraindrops

Admin Page Load Scripts

Mar 15th, 2012
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.91 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Digital Raindrops Twenty Eleven Theme Colors
  4.  */
  5.  
  6.  function drtc_admin_enqueue_scripts( $hook_suffix ) {
  7.     wp_enqueue_style( 'farbtastic' );
  8.     wp_admin_css( 'dashboard' );
  9.     wp_enqueue_style( 'drtc-theme-colors', get_stylesheet_directory_uri() . '/includes/theme-colors.css', false, '2011-04-28' );
  10.     wp_enqueue_script( 'drtc-theme-colors', get_stylesheet_directory_uri() . '/includes/theme-colors.js', array( 'farbtastic' ), '2011-06-10' );
  11.     wp_enqueue_script( 'dashboard' );
  12. }
  13. add_action( 'admin_print_styles-appearance_page_theme_colors', 'drtc_admin_enqueue_scripts' );
  14.  
  15. /* Add our theme colors page to the admin menu */
  16. function drtc_theme_colors_add_page() {
  17.     $color_page = add_theme_page(
  18.         __( 'Theme Colors', 'drtc' ),
  19.         __( 'Theme Colors', 'drtc' ),
  20.         'edit_theme_options',
  21.         'theme_colors',
  22.         'theme_colors_render_page'
  23.     );
  24. }
  25. add_action( 'admin_menu', 'drtc_theme_colors_add_page' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement