I have this code to show all posts of category and thumbnail for the first post of them.
<?php $recent = new WP_Query(); ?>
<?php $recent->query( 'cat=1&showposts=5' ); ?>
<?php $is_first_post = true; ?>
<?php while( $recent->have_posts() ) : $recent->the_post(); ?>
<ul>
<li>
<?php
if ( $is_first_post && has_post_thumbnail() ) {
the_post_thumbnail();
$is_first_post = false;
}
?>
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
</li>
</ul>
<?php endwhile; ?>
I want to run this code by using a shortcode, which is using category and post number.
How do I create such a shortcode in WordPress?
First of all you just change your function name.
In wordpress get_posts() is one function so you did not create your custom function same name.
https://developer.wordpress.org/reference/functions/get_posts/