add_panel( 'wp_roket_theme_option', array('title' => __( 'Theme Options','wp_roket' ), 'priority' => 1) ); } function wp_roket_sanitize_text( $input ) { return wp_kses_post( force_balance_tags( $input ) ); } function wp_roket_sanitize_checkbox( $input ) { if ( $input == 1 ) { return 'on' ; } else { return 'off'; } } function wp_roket_sanitize_integer( $input ) { return (int)($input); }