Custom Post Type pagination when CPT ‘rewrite’ rule and a page have the same slug
Try changing the page’s slug to something else and changing your post type registration to this: $args = array( ‘labels’ => $labels, ‘public’ => true, ‘publicly_queryable’ => true, ‘has_archive’ => true, ‘show_ui’ => true, ‘rewrite’ => array(‘slug’ => ‘properties’, ‘with_front’ => false), ‘query_var’ => true, ‘capability_type’ => ‘post’, ‘hierarchical’ => false, ‘show_in_nav_menus’ => false, ‘menu_position’ … Read more