no need for a plugin to upload you can just go to :
wp-admin/options-misc.php
and Allow File Uploads
i’ll let the other questions for other users 🙂 bed calling me ZZzZzz
Three is more than a couple. 🙂
First Q: Along with chaaban’s reply, there’s a number of plugins (one is IImage Browser) which make uploading and managing images in posts easier. Some of these are linked here:
http://codex.wordpress.org/Plugins/Images
Second Q:
http://asymptomatic.net//2005/01/26/1249/limit-categories/
Lastly Q: What theme are you using?
Wow that was quick, thanks for the answers. For the theme, I’m using the theme labeled “Your Theme.”
“For the theme, I’m using the theme labeled “Your Theme.”“
O-kay… Any chance this would be the Default theme in WordPress? If so, edit the sidebar.php for “Your Theme” and where you find this:
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<?php get_links_list(); ?>
change it to:
<?php get_links_list(); ?>
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
This will cause the conditional is_home/is_page test to occur on the meta section alone (which follows right after the section shown above). More info on conditional tags in WordPress templates:
http://codex.wordpress.org/Conditional_Tags
Cool! It worked! Thanks for all the help =).