lorax

msg:4496627 | 10:33 am on Sep 18, 2012 (gmt 0) |
I'm not aware of any plugins that can do this but it should be pretty easy to write the code into your theme to do this.
|
mailtimi

msg:4496630 | 10:40 am on Sep 18, 2012 (gmt 0) |
Pls can u asist with the code that can do dis? Am not a programmer. Thanx
|
lorax

msg:4497537 | 10:41 pm on Sep 19, 2012 (gmt 0) |
Wish I could help. Easy doesn't necessarily mean it won't take time to write the code. Maybe the developer of your theme has something already written up. Have you tried contacting them?
|
mhansen

msg:4497555 | 11:15 pm on Sep 19, 2012 (gmt 0) |
Take a look into some of the author tools in the wp plugin repository. If you setup a user profile for your authors, you can use WordPress hooks to call the data into an author type box under the posts. Wordpress author codex [codex.wordpress.org] MH
|
tlainevool

msg:4509166 | 1:14 am on Oct 18, 2012 (gmt 0) |
This sounds like a perfect use of Custom Fields, see the wordpress docs here: [codex.wordpress.org...] You'd probably need to get a bit more into the code than just using the_meta() function as explained on that page, but you could do something like:
<div class='source'> <span class='source-title'>Source: </span><span><?php echo get_post_meta(get_the_ID(), "Source", true)' ?></span> </div>
This code would go at the bottom of the loop in your template code, see: [codex.wordpress.org...]
|
|