Custom post type not displaying all entries

This is using a custom post type that I’ve set up in the functions.php file.
What I was hoping to get some advice one was why I have 14 entries in my custom “SPEAKERS” post type but only have 10 showing on my page? What might be limiting it?

This is what I put in my functions.php page

Read More
// Creates Speakers post type
register_post_type('speakers', array(
'label' => 'Speakers',
'public' => true,
'show_ui' => true,
'capability_type' => 'post',
'hierarchical' => false,
'rewrite' => array('slug' => 'speakers'),
'query_var' => true,
'supports' => array(
'title',
'editor',
'excerpt',
'trackbacks',
'custom-fields',
'comments',
'revisions',
'thumbnail',
'author',
'page-attributes',)
) );

This is a screenshot of all 14 of my speakers, but when you go to my speakers page you only see 10.

enter image description here

Any advice is appreciated!

Related posts

Leave a Reply

1 comment

  1. You only see ten posts because that is the amount of posts per page set by default in the back end under ‘Settings -> Reading -> Blog pages show at most’

    Screenshot reading

    You can either set that to 14 to display all your 14 posts, or you can use pre get posts or WP_Query to alter the main query/create a custom query to change the number of posts shown on a page.