So I downloaded Starkers and I am working from there on a site. Even with the default template, I can not figure out how to do this..
Creating a page. Easy. Add new page, name the page, it shows up in the navigation. Ok, choose whatever template for that, easy, done. Now I want to add a post for that new page. So if I named the page Events, I want go to add a new post, post whatever event I want, and tell in to GO to the Events page and be posted on their. Any suggestions?
What you want to do is make a category called events and just mark related posts with that category, so then you could go to mypage.com/categories/events . It says categories in the URL by default, but you can set it up to just show the category name (you might have to use a plugin). Check the Wordpress Template Hierarchy to see what template it will use. In many cases, you'll see template designers have the Archive.php catch these pages and use php to change the headers.
Or the simple way is to create just the page template, that runs a second loop displaying just posts in a specific category.
My projects page does just that, by displaying all pages that are the child of the projects. (Although I may edit the template to just show the excerpt as my project base expands!)
Creating a page. Easy. Add new page, name the page, it shows up in the navigation. Ok, choose whatever template for that, easy, done. Now I want to add a post for that new page. So if I named the page Events, I want go to add a new post, post whatever event I want, and tell in to GO to the Events page and be posted on their. Any suggestions?
If you want a Page to run a loop, you'll need to create a new template.
Or the simple way is to create just the page template, that runs a second loop displaying just posts in a specific category.
My projects page does just that, by displaying all pages that are the child of the projects. (Although I may edit the template to just show the excerpt as my project base expands!)