devilson
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Latest 5 authors sorted by posting dateThank you, MichaelH i can learn allot from that.
Forum: Fixing WordPress
In reply to: Latest 5 authors sorted by posting dateIn that case i would use a plugin.
Forum: Fixing WordPress
In reply to: Latest 5 authors sorted by posting dateI found this but i doesn’t order them and im not sure how to limit the ammount it shows.
<?php list_authors(TRUE, TRUE); ?>Forum: Fixing WordPress
In reply to: Latest 5 authors sorted by posting dateHi devilson! Thanks a lot. I tested but Iβm afraid it doesn’t work as it should. The code displays all my users for 5 times. π
Ill look into it.
Forum: Fixing WordPress
In reply to: Latest 5 authors sorted by posting date<?php $pop = $wpdb->get_results("SELECT id, post_author, guid FROM {$wpdb->prefix}posts WHERE post_type='post' ORDER BY id DESC LIMIT 5"); foreach($pop as $post) : ?> <?php $pop1 = $wpdb->get_results("SELECT user_nicename FROM {$wpdb->prefix}users"); foreach($pop1 as $user) : ?> <li><a href="<?php echo $post->guid; ?>"><?php echo $user->user_nicename; ?></a></li> <?php endforeach; ?><?php endforeach; ?>That should work put it where you want it.
It could be shorter but im still learning php.
Edit: If it doesn’t work tell me as i built it on my local host with one user.
Forum: Everything else WordPress
In reply to: Regarding WP users and WP-DrupalI’m still thinking of using Drupal because it seems to allow for greater control over the site.
That depends on your skill if you know what your doing then there both the same but if you dont then WordPress is easyer to learn.
Forum: Fixing WordPress
In reply to: Latest 5 authors sorted by posting dateif you dont want it in the side bar im willing to put it to gether for you.
Forum: Fixing WordPress
In reply to: Latest 5 authors sorted by posting dateIts not what you want but select different parts of the DB should work.
Forum: Fixing WordPress
In reply to: Stupid question but what are links.Ok i think i got it, Thank you.
Forum: Fixing WordPress
In reply to: Stupid question but what are links.On the dashboard you have a menu:
1. Dashboard
2. Posts
3. Media
4. Links — Thats the one i mean.Forum: Fixing WordPress
In reply to: Stupid question but what are links.Haha, i mean in the menu you have links and i dont know what they are for.
Forum: Fixing WordPress
In reply to: Side bar bullet pointsI have wordpress installed on my local host.
Forum: Themes and Templates
In reply to: Short PostsThank you it worked great.