Skip to content

Instantly share code, notes, and snippets.

@RobyCigar
Last active July 11, 2021 14:34
Show Gist options
  • Select an option

  • Save RobyCigar/1b009b6747fda74fc78d8feabe1202dc to your computer and use it in GitHub Desktop.

Select an option

Save RobyCigar/1b009b6747fda74fc78d8feabe1202dc to your computer and use it in GitHub Desktop.
Show all post title wordpress
<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