' . antispambot( $content ) . ''; } add_shortcode( 'email', 'wpcodex_hide_email_shortcode' ); //Remove Styles function my_deregister_styles() { wp_deregister_style( 'wpbs-style' ); wp_deregister_style( 'wp-admin' ); wp_deregister_style( 'acf-input-repeater' ); } add_action( 'wp_print_styles', 'my_deregister_styles', 100 ); //Add Custom CSS function my_scripts() { wp_register_style( 'style', get_stylesheet_directory_uri() . '/style.css', array(), '1.0', 'all' ); wp_enqueue_style( 'style' ); } add_action('wp_print_styles', 'my_scripts', 9999); // Register Custom Post Type function slider() { $labels = array( 'name' => _x( 'Slider', 'Post Type General Name', 'tinytechsclub' ), 'singular_name' => _x( 'Slider', 'Post Type Singular Name', 'tinytechsclub' ), 'menu_name' => __( 'Slider', 'tinytechsclub' ), 'parent_item_colon' => __( 'Parent Item:', 'tinytechsclub' ), 'all_items' => __( 'All Items', 'tinytechsclub' ), 'view_item' => __( 'View Item', 'tinytechsclub' ), 'add_new_item' => __( 'Add New Item', 'tinytechsclub' ), 'add_new' => __( 'Add New', 'tinytechsclub' ), 'edit_item' => __( 'Edit Item', 'tinytechsclub' ), 'update_item' => __( 'Update Item', 'tinytechsclub' ), 'search_items' => __( 'Search', 'tinytechsclub' ), 'not_found' => __( 'Not found', 'tinytechsclub' ), 'not_found_in_trash' => __( 'Not found in Trash', 'tinytechsclub' ), ); $args = array( 'label' => __( 'slider', 'tinytechsclub' ), 'description' => __( 'Sliders', 'tinytechsclub' ), 'labels' => $labels, 'supports' => array('title'), 'taxonomies' => array(), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'show_in_nav_menus' => true, 'show_in_admin_bar' => true, 'menu_position' => 5, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', ); register_post_type( 'slider', $args ); } add_action( 'init', 'slider', 0 ); // Register Custom Post Type function program() { $labels = array( 'name' => _x( 'Programs', 'Post Type General Name', 'tinytechsclub' ), 'singular_name' => _x( 'Program', 'Post Type Singular Name', 'tinytechsclub' ), 'menu_name' => __( 'Programs', 'tinytechsclub' ), 'parent_item_colon' => __( 'Parent Item:', 'tinytechsclub' ), 'all_items' => __( 'All Items', 'tinytechsclub' ), 'view_item' => __( 'View Item', 'tinytechsclub' ), 'add_new_item' => __( 'Add New Item', 'tinytechsclub' ), 'add_new' => __( 'Add New', 'tinytechsclub' ), 'edit_item' => __( 'Edit Item', 'tinytechsclub' ), 'update_item' => __( 'Update Item', 'tinytechsclub' ), 'search_items' => __( 'Search', 'tinytechsclub' ), 'not_found' => __( 'Not found', 'tinytechsclub' ), 'not_found_in_trash' => __( 'Not found in Trash', 'tinytechsclub' ), ); $args = array( 'label' => __( 'program', 'tinytechsclub' ), 'description' => __( 'Programs', 'tinytechsclub' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'excerpt', 'thumbnail', 'revisions', 'custom-fields', ), 'taxonomies' => array(), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'show_in_nav_menus' => true, 'show_in_admin_bar' => true, 'menu_position' => 5, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', ); register_post_type( 'program', $args ); } add_action( 'init', 'program', 0 ); // change sold out text to waitlist in listings function custom_filter_gettext( $translated, $original, $domain ) { // This is an array of original strings // and what they should be replaced with $strings = array( 'Sold Out' => 'Waitlist', // Add some more strings here ); // See if the current string is in the $strings array // If so, replace its translation if ( isset( $strings[$original] ) ) { // This accomplishes the same thing as __() // but without running it through the filter again $translations = get_translations_for_domain( $domain ); $translated = $translations->translate( $strings[$original] ); } return $translated; } add_filter( 'gettext', 'custom_filter_gettext', 10, 3 ); ?>

Website Undergoing Maintenance

Check back tomorrow! Sorry for the inconvenience