Tag: post

How to create custom post type in wordpress ?

Add this code to your website theme functions.php file.. <?php function nst_custom_post() { register_post_type( 'Movie', array( 'labels' => array( 'name' => __( 'Movie' ), 'singular_name' => __( 'Movie' ) ), 'public' => true, 'has_archive' => true, 'rewrite' => array('slug' =>...

WordPress count* total views of posts !

Sometime we want to check the total views of the particular post... so here is the solution by using of this code you can check how many times your post is viewed.  Add this to theme Function.php file function wpb_set_post_views($postID)...
Click to Chat