What is the difference between “post” and “page” in WordPress?

many people are confused in page and post difference. wordpress  comes  with two content type post and page begineer developer are confused, Pages These are your static pages.  Examples of your pages would be: About, Services, Contact, etc. While the WordPress database stores the published date of the page, pages are timeless entities. For example, your about … Read more

WordPress Custom Taxonomy With Same Slug As Custom Post Type

If you want the Terms in your Custom Taxonomy to have their URL path containing their Custom Post Type slug instead of Custom Taxonomy slug without showing 404 page, that can be a little tricky, and as I found throughout the blogs and forums quite impossible. create register post type // register custom post type function create_post_types() { register_post_type(‘latestcases’, array( ‘labels’ => array( ‘name’ … Read more