I’ve got a new problem.
I tried creating a new page, like Skippy told me. And I’ve used the get_posts tags to include the posts from the Tutorial category into the Tutorials page.
This is the code I’ve used
<?php
$posts = get_posts('numberposts=3');
foreach($posts as $post) :
setup_postdata($post);
?>
<a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a>
<?php endforeach; ?>
But when I try to run it, wordpress gives me an error saying: “Warning: Invalid argument supplied for foreach() in /***/***/public_html/blog/wp-content/themes/ennbee2/tutorials.php on line 16”
What am I doing wrong?