how to add navigation inside the recent post in wordpress?

[newer | older ]
if i click newer , newer recent post will load.
either if i click older, then the next recent post will load.
I am new to wordpress. can who give me an idea to implement navigation inside this code. shown below?

<?php
                        $args = array( 'numberposts' => '3' );
                        $recent_posts = wp_get_recent_posts( $args );
                        foreach( $recent_posts as $recent ) {
                            echo '<li style="font-weight:700;"><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' .   $recent["post_title"].'</a> </li> ';
                            echo '<li>' .wpautop(wp_trim_words($recent["post_content"], 15)). '</li>';
                        }
                    ?>

Related posts

Leave a Reply

2 comments