To add a new post in WordPress, follow these steps: Log in to your WordPress dashboard: Go to your WordPress website's admin panel by visiting: https://www.yourwebsite.com/wp-admin/. Enter your username and password to log in. Access the "Posts" section: In the...
How to add blog post in WordPress website ? (Step by Step)
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)...