How to create a list of links to post with specific category

You can do this by putting this where you want to display the list :

<ul>
<?php
global $post;
$args = array( 'numberposts' => 10, 'offset'=> 1, 'category' => 1 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) :  setup_postdata($post); ?>
    <li><a href="https://wordpress.stackexchange.com/questions/50228/<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>

In here all you need to do is replace the category ID with your desired categ ID. `’category’ => 1 and that’s all