Automattic / liveblog

Liveblogging done right. Using WordPress.
https://wordpress.org/plugins/liveblog/
308 stars 122 forks source link

Pagination #638

Open John4peace opened 4 years ago

John4peace commented 4 years ago

i would like pagination removed or if possible change the number of default posts per page(which is 5) ...how can i go about that...thanks

nickottens commented 4 years ago

Seconding this request. I would love to be able to show more than the default 5 entries per page.

trepmal commented 3 years ago

This filter should allow you to customize how many entries are shown initially:

https://github.com/Automattic/liveblog/blob/c518452bab0287307c57f03b574f4850683fa2ca/classes/class-wpcom-liveblog-lazyloader.php#L64

For example:

add_filter( 'liveblog_number_of_entries', function() {
    return 10;
});