Paginate links not working

[ad_1]

Below is the code in my front-page.php:

<div>
<h2><strong>Ultime Notizie</strong></h2>
<?php
$homepagePosts = new WP_Query (array(
‘posts_per_page => 3’
));

while($homepagePosts -> have_posts()) {
$homepagePosts -> the_post(); ?>
<div class=”blog-post”>
<figure>
<?php the_post_thumbnail(); ?>
</figure>
<div class=”blog-content”>
<a href=”<?php the_permalink(); ?>”><h3><?php echo the_title(); ?></h3></a>
<p class=”post-info”>Publicato da <?php the_author_posts_link();?>/<?php the_time(‘F d, Y’); ?>/<?php echo get_the_category_list(‘, ‘ ); ?></p>
<p><?php echo wp_trim_words(get_the_content(), 40); ?> <a href=”<?php the_permalink(); ?>”>Leggi di piu</a></p>
</div>
</div>
<?php }
echo paginate_links();
?>
</div>

In dashboard then settings then reading I set posts to show at 1.

But for some reason I do not see pagination links, what am I doing wrong?

&#x200B;

[ad_2]

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer