What is the purpose of body_class function in wordpress ? body_class function helps to show the bunch of classes name to the body element that have information about what kind of page is currently being displayed. Here is the way...
How to add Category name to body class wordpress!
how to find your custom post type slug name ?
Here is the way to find custom post type slug name in your website... function nst_custom_post() { register_post_type( 'Movie', array( 'labels' => array( 'name' => __( 'Movie' ), 'singular_name' => __( 'Movie' ) ) In this function above.. post type...