Last active
July 11, 2021 14:34
-
-
Save RobyCigar/1b009b6747fda74fc78d8feabe1202dc to your computer and use it in GitHub Desktop.
Show all post title wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ul> | |
| <?php | |
| // Define our WP Query Parameters | |
| $the_query = new WP_Query( 'posts_per_page=5' ); ?> | |
| <?php | |
| // Start our WP Query | |
| while ($the_query -> have_posts()) : $the_query -> the_post(); | |
| // Display the Post Title with Hyperlink | |
| ?> | |
| <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li> | |
| <li><?php | |
| // Display the Post Excerpt | |
| the_excerpt(__('(more…)')); ?></li> | |
| <?php | |
| // Repeat the process and reset once it hits the limit | |
| endwhile; | |
| wp_reset_postdata(); | |
| ?> | |
| </ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment