View Full Version : Wordpress Tags


VMinder
11-19-2005, 02:08 PM
I ended up switching to Wordpress after I got way to frustrated with Greymatter. I ran into a few problems, not with the whole set up, just certain tags I need.

I want to set up my sub-content pages on WP but every time I insert the tag:

<?php wp_link_pages('before=<div id="page-links">&after=</div>'); ?>

It just wont work, none of the pages I have created have shown up. Am I usng the correct tag?

Also I am having the same problem for archives, I am using the tag:

<?php wp_get_archives('type=monthly&format=link'); ?>

But the monthly archive links wont show up. Again, am I using the correct tag?

Also another thing, I want to set up my blog content so its set up in tables. Which file do I edit so each post has basically a header and footer that kind of looks like this (screen shot of what I formally had it on grey matter but I am unsure of how to do it in WP)
click here (http://i13.photobucket.com/albums/a280/VMinder/example3.jpg)

What file do I edit to do this?

Monkey Bizzle
11-19-2005, 03:43 PM
What file do I edit to do this?


index.php, or main.php depending on how your theme is set up... You'll know it's the right page if it has this string of code in it...

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

VMinder
11-19-2005, 06:59 PM
Thank you! I saw that file and I wasn't sure if I could edit it or not, but apparently I can :P I got everything working now...I just have one question.

With all like the page link attributes, blogg roll, categories etc. they all have bullets on them. How can I remove them?