Automattic / liveblog

Liveblogging done right. Using WordPress.

Home Page:https://wordpress.org/plugins/liveblog/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pagination

John4peace opened this issue · comments

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

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

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

$number = (int) apply_filters( 'liveblog_number_of_default_entries', self::$number_of_default_entries );

For example:

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