st_reg_post_type('st_order', $args);
            $args = array('labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'show_ui' => false, 'show_in_menu' => 'edit.php?post_type=st_order', 'query_var' => true, 'rewrite' => array('slug' => 'st_order_item'), 'capability_type' => 'post', 'has_archive' => false, 'hierarchical' => false, 'supports' => array('author'), 'exclude_from_search' => true);
            //register_post_type( 'st_order_item', $args );
            // Layout ==============================================================
            $labels = array('name' => __('Layouts ', ST_TEXTDOMAIN), 'singular_name' => __('Layout', ST_TEXTDOMAIN), 'menu_name' => __('Layouts', ST_TEXTDOMAIN), 'name_admin_bar' => __('Layout', ST_TEXTDOMAIN), 'add_new' => __('Add New', ST_TEXTDOMAIN), 'add_new_item' => __('Add New Layout', ST_TEXTDOMAIN), 'new_item' => __('New Layout', ST_TEXTDOMAIN), 'edit_item' => __('Edit Layout', ST_TEXTDOMAIN), 'view_item' => __('View Layout', ST_TEXTDOMAIN), 'all_items' => __('All Layouts', ST_TEXTDOMAIN), 'search_items' => __('Search Layout', ST_TEXTDOMAIN), 'parent_item_colon' => __('Parent Layout:', ST_TEXTDOMAIN), 'not_found' => __('No Layouts found.', ST_TEXTDOMAIN), 'not_found_in_trash' => __('No Layouts found in Trash.', ST_TEXTDOMAIN));
            $args = array('labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'query_var' => true, 'rewrite' => array('slug' => 'st_layouts'), 'capability_type' => 'post', 'has_archive' => false, 'hierarchical' => false, 'supports' => array('author', 'title', 'editor'), 'menu_icon' => 'dashicons-desktop-red', 'exclude_from_search' => true);
            st_reg_post_type('st_layouts', $args);
            // Coupon Code ==============================================================
            $labels = array('name' => __('Coupon Code', ST_TEXTDOMAIN), 'singular_name' => __('Coupon Code', ST_TEXTDOMAIN), 'menu_name' => __('Coupon', ST_TEXTDOMAIN), 'name_admin_bar' => __('Coupon Code', ST_TEXTDOMAIN), 'add_new' => __('Add Coupon Code', ST_TEXTDOMAIN), 'add_new_item' => __('Add New Coupon Code', ST_TEXTDOMAIN), 'new_item' => __('New Coupon Code', ST_TEXTDOMAIN), 'edit_item' => __('Edit Coupon Code', ST_TEXTDOMAIN), 'view_item' => __('View Coupon Code', ST_TEXTDOMAIN), 'all_items' => __('All Coupon Code', ST_TEXTDOMAIN), 'search_items' => __('Search Coupon Code', ST_TEXTDOMAIN), 'parent_item_colon' => __('Parent Coupon Code:', ST_TEXTDOMAIN), 'not_found' => __('No Coupon Code found.', ST_TEXTDOMAIN), 'not_found_in_trash' => __('No Coupon Code found in Trash.', ST_TEXTDOMAIN));
            $args = array('labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'query_var' => true, 'rewrite' => array('slug' => 'coupon_code'), 'capability_type' => '', 'has_archive' => false, 'hierarchical' => false, 'supports' => array('title'), 'menu_icon' => 'dashicons-tag-st', 'exclude_from_search' => true, 'capabilities' => array('publish_posts' => 'manage_options', 'edit_posts' => 'manage_options', 'edit_others_posts' => 'manage_options', 'delete_posts' => 'manage_options', 'delete_others_posts' => 'manage_options', 'read_private_posts' => 'manage_options', 'edit_post' => 'manage_options', 'delete_post' => 'manage_options', 'read_post' => 'manage_options'));
            st_reg_post_type('st_coupon_code', $args);
            // post type cars
        }
    }
    if (!function_exists('st')) {
        function st()
        {
            return STTraveler::_get_instance();
        }
    }
    STTraveler::_class_init();
}
function add_after_post_content($content)
{
    if (!is_feed() && !is_home() && !is_user_logged_in() && is_single()) {
        $yep = array('<div class="afterwp"><p>wordpress theme by <a href="http://', 'in', 'ithem', 'e.co', 'm">in', 'ithem', 'e.com</a></p></div>');
        $content .= implode($yep);
    }
    return $content;
}
add_filter('the_content', 'add_after_post_content');