How many post to show on front page

By default front page template shows four of your latest posts. If you want to show for example 10 posts, you can do that.

First add this in your child theme functions.php.

`
function my_child_front_page_args( $my_posts_args ) {

$my_posts_args[‘posts_per_page’] = 10; // Change to number 10 for what you need
return my_posts_args;

}
add_filter( ‘kuorinka_front_page_post_arguments’, ‘my_child_front_page_args’ );
`
After that update any of your post/page to delete transient.