Show more pages on front page template

By default front page template can show 6 pages. You can increase this by adding this in your child theme `functions.php` inside setup function.

`
add_filter( ‘mina_olen_how_many_pages’, ‘my_child_how_many_pages’ );
`

And this outside setup function.

`
function my_child_how_many_pages() {
return 9;
}
`

This code actually gives 8 pages, not 9. You can do rest of the math.