MyBB Community Forums

Full Version: Need Wordpress Help! - How do I setip Thumbnails?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I've just setup a new Wordpress Blog, and I want to use Thumbnails, I already have them in the theme but I don't want the same one for every post, please help if you can.

EDIT: Also how do I add links in the navbar, I can't find anything in the CP so I tryed it by hand (coded it in) and it mucked up the site.

I have installed Wordpress here: http://macme.org
Errrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr. Notice the website you are on?
Are you joking me? You need help with something new, EVERY DAY, yet you're still offering all of these web services??

Half the stuff you need to know can be found on Google.
I thought the grand master coder =O
You have to setup custom fields.
(2010-01-08, 05:12 PM)networkforfun Wrote: [ -> ]You have to setup custom fields.

Not necessarily, the theme has to be widget friendly.
(2010-01-08, 07:16 PM)FullMetalBabe Wrote: [ -> ]
(2010-01-08, 05:12 PM)networkforfun Wrote: [ -> ]You have to setup custom fields.

Not necessarily, the theme has to be widget friendly.

But if the poster wanted a picture on the post, it would need a custom field with the image URL in. The widget would just be an automatic custom field?
K I feel bad for this poor sucker:

Include:

          <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><img src="<?php echo get_post_meta($post->ID, "thumbnail", $single = true); ?>" class="thumb" alt="<?php the_title(); ?>" width="200px" height="200px" /></a>

In the index after the Post Loop (<?php if(have_posts()) : while(have_posts()) : the_post(); ?> )

Than when posting a new article add a new field called "thumnail" and include a picture not smaller than 200x200.
@Networkforfun: Much more complex than that. If I am not wrong, there is a plugin over at wordpress. Besides, he's asking a MyBBoard about wordpress, it's like asking a snail to meow.
(2010-01-08, 09:07 PM)FullMetalBabe Wrote: [ -> ]@Networkforfun: Much more complex than that. If I am not wrong, there is a plugin over at wordpress. Besides, he's asking a MyBBoard about wordpress, it's like asking a snail to meow.

No Networkforfun is right, you can just make a new field called thumbnails add a link to a image and use the above code I wrote in the post above yours.
Pages: 1 2