Post Code | Pin Code of Buchannapet, Warangal, TELANGANA Post of Address Maps Details and Latitude - Longitude* This article was originally published here
Xeeshop provide to best plugin for wordpress supported to make website faster and easy any use of that
Post Code | Pin Code of Buchannapet, Warangal, TELANGANA Post of Address Maps Details and Latitude - LongitudeFast Secure Contact Form is replace with old si contact form plugin to using with wordpress as contact form plguin
Frequently Bought Together For Woocommerce making to you can bought combo product in woocommerce with good discount in your website

/* Custom Post Type Start */
function create_posttype() {
register_post_type( 'news',
// CPT Options
array(
'labels' => array(
'name' => __( 'news' ),
'singular_name' => __( 'News' )
),
'public' => true,
'has_archive' => false,
'rewrite' => array('slug' => 'news'),
)
);
}
// Hooking up our function to theme setup
add_action( 'init', 'create_posttype' );
After put this code save function.php after that you will be show it on admin side see below screenshot
/*Custom Post type start xeeshop.com*/
function acw_post_type_newsa() {
$supports = array(
'title', // post title
'editor', // post content
'author', // post author
'thumbnail', // featured images
'excerpt', // post excerpt
'custom-fields', // custom fields
'comments', // post comments
'revisions', // post revisions
'post-formats', // post formats
);
$labels = array(
'name' => _x('news', 'plural'),
'singular_name' => _x('news', 'singular'),
'menu_name' => _x('news', 'admin menu'),
'name_admin_bar' => _x('news', 'admin bar'),
'add_new' => _x('Add New', 'add new'),
'add_new_item' => __('Add New news'),
'new_item' => __('New news'),
'edit_item' => __('Edit news'),
'view_item' => __('View news'),
'all_items' => __('All news'),
'search_items' => __('Search news'),
'not_found' => __('No news found.'),
);
$args = array(
'supports' => $supports,
'labels' => $labels,
'public' => true,
'query_var' => true,
'rewrite' => array('slug' => 'news'),
'has_archive' => true,
'hierarchical' => false,
);
register_post_type('news', $args);
}
add_action('init', 'acw_post_type_newsa');
/*Custom Post type end xeeshop.com*//*Template Name: News*/ get_header(); query_posts(array( 'post_type' => 'news' )); while (have_posts()) : the_post(); ?>
