I have copied verity-pro/template-parts/recent-posts/front-recent-posts.php and pasted at verity-pro-
child/template-parts/recent-posts/front-recent-posts.php and changed the ‘posts_per_page’ to 12 (like below) but nothing has changed after I’d uploaded & installed the verity-pro-child.zip which includes style.css for the child theme. Am I missing anything here?
Below codes shows only part of the whole codes in the file.
<div id=”infinite-post-wrap” class=”archive-post-wrap”>
<?php
/**
* Show eight latest posts excluding first one
*/
$recent_posts = new WP_Query( array(
‘posts_per_page’ => 12,
‘post__not_in’ => array( $first_post_id ),
‘ignore_sticky_posts’ => true,
‘paged’ => ”,
) );
/* Start the Loop */
while ( $recent_posts->have_posts() ) :
$recent_posts->the_post();
get_template_part( ‘template-parts/content/content’, ‘archive’ );
endwhile;
wp_reset_postdata();
?>
<div class=”posts-navigation”>
<div class=”nav-links”>
“>