Hi
Just started using Wordpress and Thematic. Its the first theme I tried and it looks like I pick the right one. Im very impressed with the support and information available on this forum.
However Im just currently a little stuck with some changes I want to make.
Im using a child thematic theme.
1. On my home page I want to show a single page not 'posts'.
Ive sorted that by using the admin interface and creating a new page and making this the front page in the settings.
2. Ive then removed the 'posts' from any page.
3. But I want to add links to the menu that direct to the the post categories such as 'New Posts' > '...com/?cats=1'
Looking at some other posts, I know I should be using stuff such as;
function child_add_menu_items($output) {
....
}
add_filter('wp_page_menu','child_add_menu_items');
and
wp_list_categories(.... (somewhere)
But Ive not been able to get it quite right. Can anyone help?
4. I also want to add some other pages to the menu bar but dont want this code to have an affect on the links above.
Thanks in advance!
Dave