I'm using Nick's Genesis Featured Widget Amplified to show thumbnails and excerpts on an archive-{custom_post}.php template... only the pagination doesn't appear to be wokring
http://jb510.com/islandluxeresorts/agent-sightings/
When I click the Older Post link it goes to:
http://jb510.com/islandluxeresorts/a...htings/page/2/
Is the plugin broken or is it me?
CPT is defined as:
PHP Code:
// Facebook Agent Sightings
$agent_sightings_labels = array(
'name' => _x( 'Agent Sightings', 'post type general name' ),
'singular_name' => _x( 'Agent Sighting', 'post type singular name' ),
'add_new' => _x( 'Add New', 'Agent Sighting'),
'add_new_item' => __( 'Add New Agent Sighting '),
'edit_item' => __( 'Edit Agent Sighting '),
'new_item' => __( 'New Agent Sighting '),
'view_item' => __( 'View Agent Sighting '),
'search_items' => __( 'Search Agent Sightings '),
'not_found' => __( 'No Agent Sighting found' ),
'not_found_in_trash'=> __( 'No Agent Sightings found in Trash' ),
'parent_item_colon' => ''
);
$agent_sightings_supports = array('title', 'editor', 'thumbnail', 'excerpt', 'custom-fields', 'revisions');
$agent_sightings_post_type_args = array(
'labels' => $agent_sightings_labels,
'singular_label' => __('Agent Sighting'),
'public' => true,
'show_ui' => true,
'publicly_queryable'=> true,
'query_var' => true,
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'rewrite' => array('slug' => 'agent-sightings'),
'supports' => $agent_sightings_supports,
'menu_position' => 5,
'menu_icon' => ''
);
register_post_type('agent-sightings', $agent_sightings_post_type_args);