I'm not sure if this is in right section but here are my questions:
1) How can I make Wordpress to show authors name in post?
2) How can I delete text "Blogroll"
3) Is there any plugin that allows users to upload their own jpg files?
4.how about .txt and other files?
Thanks in advance
(Sorry for my bad grammar)
1. You need <?php the_author(); ?> in The Loop.
Check the Classic theme for an example :
<div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
2. That could depend on your theme..
3. 'users' - do you mean readers?
4. See above :)
"3. 'users' - do you mean readers?"
Yes. I'd like to make it so every registered person could upload files.
"1. You need <?php the_author(); ?> in The Loop.
Check the Classic theme for an example :
<div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
"
Eh, I don't really know what file I should edit...
I'm using Pool theme.