Custom Post Type Archive

I created a plugin for a custom post type. CPT is defined as follows:

add_action( 'init', 'create_homelisting_cpt', 0 );
    function create_homelisting_cpt() {
    	$labels = array(
    		'name' => __( 'Homes for Sale', 'Post Type General Name', 'text_domain' ),
    		'singular_name' => __( 'Home Listing', 'Post Type Singular Name', 'text_domain' ),
    		'menu_name' => __( 'Home Listings', 'text_domain' ),
    		'name_admin_bar' => __( 'Home Listing', 'text_domain' ),
    		'archives' => __( 'Home Listing Archives', 'text_domain' ),
    		'attributes' => __( 'Home Listing Attributes', 'text_domain' ),
    		'parent_item_colon' => __( 'Parent Home Listing:', 'text_domain' ),
    		'all_items' => __( 'All Home Listings', 'text_domain' ),
    		'add_new_item' => __( 'Add New Home Listing', 'text_domain' ),
    		'add_new' => __( 'Add New', 'text_domain' ),
    		'new_item' => __( 'New Home Listing', 'text_domain' ),
    		'edit_item' => __( 'Edit Home Listing', 'text_domain' ),
    		'update_item' => __( 'Update Home Listing', 'text_domain' ),
    		'view_item' => __( 'View Home Listing', 'text_domain' ),
    		'view_items' => __( 'View Home Listings', 'text_domain' ),
    		'search_items' => __( 'Search Home Listing', 'text_domain' ),
    		'not_found' => __( 'Not found', 'text_domain' ),
    		'not_found_in_trash' => __( 'Not found in Trash', 'text_domain' ),
    		'featured_image' => __( 'Featured Image', 'text_domain' ),
    		'set_featured_image' => __( 'Set featured image', 'text_domain' ),
    		'remove_featured_image' => __( 'Remove featured image', 'text_domain' ),
    		'use_featured_image' => __( 'Use as featured image', 'text_domain' ),
    		'insert_into_item' => __( 'Insert into Home Listing', 'text_domain' ),
    		'uploaded_to_this_item' => __( 'Uploaded to this Home Listing', 'text_domain' ),
    		'items_list' => __( 'Home Listings list', 'text_domain' ),
    		'items_list_navigation' => __( 'Home Listings list navigation', 'text_domain' ),
    		'filter_items_list' => __( 'Filter Home Listings list', 'text_domain' ),
    	);
    	$args = array(
    		'label' => __( 'Home Listing', 'text_domain' ),
    		'description' => __( 'New home listings', 'text_domain' ),
    		'labels' => $labels,
    		'menu_icon' => 'dashicons-admin-home',
    		'supports' => array('title', 'editor', 'excerpt', 'thumbnail' ),
    		'taxonomies' => array('status', 'district', 'community', 'architecture', ),
    		'public' => true,
    		'show_ui' => true,
    		'show_in_menu' => true,
    		'menu_position' => 5,
    		'show_in_admin_bar' => true,
    		'show_in_nav_menus' => true,
    		'can_export' => true,
    		'has_archive' => true,
    		'hierarchical' => false,
    		'exclude_from_search' => false,
    		'show_in_rest' => true,
    		'publicly_queryable' => true,
    		'capability_type' => 'post',
    		'rewrite' => array( 'slug' => 'new-homes-for-sale' ),
    	);
    	register_post_type( 'homelisting', $args );
    }

I duplicated views/index.blade.php and created views/archive-homelisting.blade.php. I also duplicated partials/content.blade.php and created partials/content.blade.php.

I then created two demo posts assigned to the new custom post type. When viewed in development, the archive page displays “Sorry, no results were found.” However, when I change the plugin has_archive value to false, the default index.blade.php displays the posts in development.

Any thoughts on why archive-newhomes.blade.php isn’t displaying posts?

Have you tried re-saving your permalink settings?

I resaved permalink settings and added a rewrite flush function to the plugin. With a bit more troubleshooting I’ve discovered the issue to be a custom sort order function in the plugin.

This topic was automatically closed after 42 days. New replies are no longer allowed.