With the incredible popularity of Twitter theses days, many people are asking themselves how can they create their own Twitter-like network for their family, friends or company. This may be a lot easier than you think. In this tutorial, I'm going to show you how to do it easily, using WordPress.

Getting ready

Twitter success is the proof, microblogging is definitely something useful and efficient. It can help you staying tuned with friends, family or coworkers.

While Twitter is great, it may not be the best choice if you’re looking for a private network, for example for sharing work tips with colleagues, or notice your familly about what’s up.
As I was searching for an easy and quick way to create a private microblogging website, I stumbled upon an open source app called laconi.ca, which was created to allow people to launch their own private “Twitter like” microblogging sites. I didn’t really liked it and it was a total pain to install.

After this not so good experience, I decided that WordPress should do that job, and do it good as always.
P2 Theme

Let’s doing it

Well, enought talk for now! Let’s create our own, private microblogging website using our beloved WordPress.

1. Installing WordPress

The first thing to do is obviously to install WordPress on your server. Installing WordPress is definitely easy and and I’ll not explain it here due to the incredible amount of tutorials you can find on the internet.
If you need help for installing WordPress, you should read the documentation. Or even better, you can register at WpWebHost, the WordPress hosting experts, and use Fantastico to get your WordPress installed automatically in a minute. Just click here if you want to know more.

2. Get your copy of the P2 theme

The guys from Automattic (The company behing WordPress) released, some time ago, a very cool WordPress theme for social microblogging. The theme is called P2 and you can get it for free here.

After you downloaded P2, simply uncompress the archive and upload it to the wp-content/themes directory of your WordPress install. Once done, login to your WordPress dashboard and go to “Appearance”, “Themes”. Slect the P2 theme and activate it.

P2 Theme
That’s easy as that, you have sucessfully installed P2 and you’re ready for social microblogging.

3. What about a login form?

Althought the P2 theme itself is very good, it is possible to enhance it even more. As P2 allow users to post directly from the frontpage, without visiting WordPress dashboard, a good idea should be to integrate a control panel in the theme sidebar.
Our control panel will do the following:
If the user isn’t logged in or have no account yet: We’ll display a login form as well as a link to register, so the visitor can create his account.
If the user is already logged in: We’ll display a link to logout as well as a link to account options, so the user (Even if (s)he doesn’t know much about WordPress) can easily update his/her profile.

To integrate a login form in your theme sidebar, simply open the sidebar.php file and paste the following code:

<li>
  <?php global $user_ID, $user_identity, $user_level ?>
  <?php if ( $user_ID ) : ?>

    <h2>Control panel</h2>
	 <ul>
	   <li>Identified as <strong><?php echo $user_identity ?></strong>.
	   <ul>
		  <li><a href="<?php bloginfo('url') ?>/wp-admin/">Dashboard</a></li>

			<li><a href="<?php bloginfo('url') ?>/wp-admin/profile.php">Profile and personal options</a></li>
			<li><a href="<?php bloginfo('url') ?>/wp-login.php?action=logout&amp;redirect_to=<?php echo urlencode($_SERVER['REQUEST_URI']) ?>">Logout</a></li>

         <?php
         if (is_single()) {?>
           <li><a href="<?php bloginfo('wpurl');?>/wp-admin/edit.php?p=<?php the_ID(); ?>">Edit Post</a>
           </li>
         <?php } ?>

	</ul>
	</li>
	</ul>

  <?php elseif ( get_option('users_can_register') ) : ?>
    <h2>Identification</h2>
    <ul>
      <li>

      <form action="<?php bloginfo('url') ?>/wp-login.php" method="post">
      <p>
        <label for="log"><input type="text" name="log" id="log" value="<?php echo wp_specialchars(stripslashes($user_login), 1) ?>" size="22" /> User</label><br />
        <label for="pwd"><input type="password" name="pwd" id="pwd" size="22" /> Password</label><br />
<input type="submit" name="submit" value="Login" class="button" />
        <label for="rememberme"><input name="rememberme" id="rememberme" type="checkbox" checked="checked" value="forever" /> Remember me</label><br />
</p>
        <input type="hidden" name="redirect_to" value="<?php echo $_SERVER['REQUEST_URI']; ?>"/>
      </form>

      </li>
      <li><a href="<?php bloginfo('url') ?>/wp-register.php">Register</a></li>
      <li><a href="<?php bloginfo('url') ?>/wp-login.php?action=lostpassword">Recover password</a></li>
    </ul>

<?php endif; ?>
</li>

 

4. Making your network private

While the login/register form option can be good in some case, it will still allow people to read your discussions and search engines to index your content. If your need is a 100% private website, don’t worry. This is far from being a problem.
To do so, we’ll use a WordPress plugin, named Private WP. Get your copy here. Once you have it, extract the archive on your hard drive and upload the private-wp to the wp-content/plugins directory of your WordPress install. Then, simply login to WordPress, go to the dashboard, then to “Plugins” and activate the plugin.

That’s all you have to do. Now, your website will automatically detect logged in users, who’ll be able to read and post content, and unknown visitors, who’ll be automatically redirected to WordPress loggin panel.

Conclusion

The first thing which have to be said is that, one more time, WordPress show how extensible and powerful it is. If you’re familiar with WP, creating this “Twitter-like” site using the P2 theme should not take you more than 30 minutes. Isn’t that great? I’ll not say that I love WordPress, because all of you already know ;)

This tutorial was focused on making a private microblogging site and used only basic techniques, but there’s a lot of other interresting things that can be done in order to enhance this “Twitter-like” site. For example, you may want to create a page template listing all members, or even better, filtering posts to see only those posted by a selection of members?
Maybe we’ll see that in a future tutorial, if you enjoyed this one.

Related Posts

No related posts.
 

63 Comments

  1. Posted July 23, 2009 at 5:57 pm | Permalink

    That’s a good tutorial, I’m sure larger blogs would find this useful for internal communication (one blog I worked for used a 3 tier system – IM, Pownce and Wiki. P2 could’ve replaced the first two (although Wiki is necessary).

  2. Posted July 23, 2009 at 6:12 pm | Permalink

    @Sumesh: Thanks my friend, glad you enjoyed this tutorial!

  3. Posted July 23, 2009 at 6:21 pm | Permalink

    Now do the same thing, only on WPMU with multiple blogs. :) Presto, your own twitter network.

  4. Posted July 23, 2009 at 6:47 pm | Permalink

    A better way to stop anyone from getting into the system would be to use a .htaccess hack – ‘M’ on this post –> http://wpshout.com/a-to-z-of-wordpress-htaccess-hacks/

  5. Posted July 23, 2009 at 7:09 pm | Permalink

    @Alex: It is another possibility, but it’s only better if you want to prevent unwanted user registration. Otherwise, both the .htaccess and the plugin (which use PHP redirects) are good.

  6. Kyle Ferran
    Posted July 23, 2009 at 8:31 pm | Permalink

    Nice job! Just finished going thru this and it only took me about 15 minutes while one handed eating a subway sub. :)

    Thanks!

  7. flijten
    Posted July 23, 2009 at 11:02 pm | Permalink

    Wouldn’t it be easier just to use locked twitter accounts and only grant access to the people you want to be able to share this “private twitter”?

  8. Posted July 23, 2009 at 11:20 pm | Permalink

    Step 3: Why not just use a sidebar login widget?

    http://wordpress.org/extend/plugins/sidebar-login/

  9. Posted July 23, 2009 at 11:45 pm | Permalink

    Nice tutorial. This could maybe come in useful for customer service on our site. Got me thinking….

  10. Posted July 23, 2009 at 11:45 pm | Permalink

    @flijten: You could do that, but locked Twitter account will never give you the extensibility your own site can give you.

    @Otto: Didn’t know there were a widget to do that. Anyways hacks are good for that kind of simple task in my opinion. Too many plugins installed on your blog isn’t a good thing.

  11. Posted July 24, 2009 at 12:04 am | Permalink

    “Toyed” with the idea of using “Buddy Press” in WordPress MU – Not quite what I wanted. Downloaded laconi.ca and haven’t studied it too much yet. THANKS for the “shorthand” approach. This may be something that my “simple” mind can actually accomplish! Want to build a blog for bezangle.com also. You may have “set me free!”

    Thanks for “Being There” – Found you at Twitter – Will be back.

  12. Posted July 24, 2009 at 3:30 am | Permalink

    Is there a way to have this on one page of your site and use another theme for the rest of the site? -So it could share the same user database.

  13. Posted July 24, 2009 at 4:43 am | Permalink

    Can we use another theme to do this? I would like to create one page with this ‘Twitter like’ function, but left the rest of my blog as it is.

  14. Posted July 24, 2009 at 6:23 am | Permalink

    Nice tutorial

    thanks for sharing

  15. Posted July 24, 2009 at 7:58 am | Permalink

    @Blake: You could easily, using a custom category and a few modifications to P2 templates, create a blog within the P2 theme. But that kind of site use a whole WordPress databases (options, posts, comments, meta, etc) so in my opinion it will not be that easy to integrate P2 within an existing blog.

    @Edo: The P2 theme is very easy to customize. But as far as I know, there’s no other theme with similar functionalities.

  16. Posted July 24, 2009 at 8:03 am | Permalink

    Wow, I never knew it was that easy. Just shows you powerful WP is. Thanks for sharing this info.

    BTW, I will be posting about this post on my Monday roundup of posts as I think this would be beneficial to others who want to start their own Twitter-like site.

  17. Posted July 24, 2009 at 8:49 am | Permalink

    Nice one, thanks for sharing. I knew all except from the plugin :)

  18. Posted July 24, 2009 at 10:45 am | Permalink

    This is great, I’ve been thinking about the best way to implement an internal note system for the company for a while, and this looks like it might be ideal (email would’ve been impossible!)

    Cheers for sharing this.

  19. Posted July 24, 2009 at 11:11 am | Permalink

    There is a Bulgarian WP-based microblogging platform for years http://code.google.com/p/zcblog/
    However I don’t know if they ever tred it to port it in other languages.

  20. Posted July 24, 2009 at 11:27 am | Permalink

    @FreelancerCrowd: That seems interesting, is there a demo somewhere?

  21. Posted July 24, 2009 at 2:08 pm | Permalink

    wow! so easy. I’ve been looking for “twitter-like” scripts and I found it. Thanks a lot as it has saved me lots of hassles..

  22. Posted July 24, 2009 at 2:35 pm | Permalink

    its very impressive i will start building my own one soon

    Very good tutorial and thanks for ur kind help

    Sri

  23. Posted July 24, 2009 at 3:46 pm | Permalink

    I’ve had this exact set up for family members now for a few months. It’s all locked down and everyone really digs being able to post quick (or lengthy) updates for all to read. Better than email because discussions take place within the comments. The allure is the ease of posting for all involved. You covered all the bases with your article.

  24. Posted July 24, 2009 at 4:48 pm | Permalink

    I’m having a problem with the login form, where do I find the sidebar.php to input the code? Thanks

  25. Posted July 24, 2009 at 4:57 pm | Permalink

    Don’t worry about my last question, I figured it out….but thanks anyway

  26. Posted July 24, 2009 at 10:24 pm | Permalink

    Your tutorial may be a great solution for companies’ internal communication. Keep up the good work!

  27. Posted July 24, 2009 at 10:24 pm | Permalink

    Is it possible to have the tweets submitted on such a private site also be sent to Twitter or Facebook (or vice versa)?

  28. Posted July 25, 2009 at 9:20 am | Permalink

    Jean-Baptiste Jung, I am not actually sure. I’ve tested it once for a project of mine and it worked great (exept the annoyance of using only Gravatar for the avatars), but never saw an actual big broject using it as is.
    Maybe the local twitter-likes like edno23.com/ and clix.bg/ are using parts of it. I don’t actually know

  29. Posted July 25, 2009 at 3:10 pm | Permalink

    i installed the p2 theme via the add new templates button n found it thru there but now i have a problem, how do i access the sidebar.php file? cant seem to find it anywere :(

  30. Posted July 27, 2009 at 2:17 am | Permalink

    Wow, thanks for sharing, I have learned so much here on your site, thought I’d let you know your efforts are appreciated.

  31. Posted July 27, 2009 at 10:37 am | Permalink

    Hey that’s very impressive! Your tutorial is very simple and easy to understand , basically a layman’s guide to microblogging, which is a wonderful tool to keep your privacy and being seen by unwanted people or the people outside your circle.Kudos to you!!

  32. Posted July 29, 2009 at 7:13 am | Permalink

    The logout link seems not working. M using 2.8.2

  33. Posted July 29, 2009 at 10:39 am | Permalink

    Hi. I want to see this on action! Is there anybody who has done this???

  34. Posted July 29, 2009 at 3:40 pm | Permalink

    Nice tutorial! I think, it is very easy to follow. Just one question, is there anyway to prevent unnecessary access?

  35. Posted July 29, 2009 at 5:00 pm | Permalink

    I’ve been thinking about this for a while. I have a project that is going to require a website using WP that allows everyone to post tidbits to contribute to a large list, sort of similar to FML and other sites like that. There are actually a few ways to do this, and your method seems like the easiest I’ve come across so far. (Which means if I get stuck, I’ve got a plan B!) If you’re already good with WordPress, you could use create a page template that uses comments to allow microblogging and set that page as the default. That’s probably what I’m going to do, but I’m definitely glad to have a plan B!

  36. Posted July 30, 2009 at 6:33 am | Permalink

    great post. I’m thinking about re-designing my blog, and i think that using this tutorial will be very helpful in implementing my new wordpress theme

  37. Posted July 30, 2009 at 11:40 am | Permalink

    Why try and shoe-horn it in when you could a system like http://laconi.ca/trac/ which is an opensource Microblogging platform (powers http://identi.ca/)

  38. Posted July 30, 2009 at 12:22 pm | Permalink

    i install this theme on my site, but i can’t edit the theme.

  39. Jason
    Posted July 30, 2009 at 11:22 pm | Permalink

    those looking for a demo of the theme, here you go.

    http://p2demo.wordpress.com/

  40. Posted August 2, 2009 at 7:54 am | Permalink

    I have also thinking to redesign my site. It will help me.

  41. Posted August 8, 2009 at 4:26 am | Permalink

    “While Twitter is great, it may not be the best choice if you’re looking for a private network, for example for sharing work tips with colleagues, or notice your familly about what’s up.”

    This is great! Sometimes social networking sites like Twitter often become another Myspace or Facebook where you eventually end up with contacts you don’t even know. A private site is a good idea for families, groups of friends or officemates who want to stay in touch without broadcasting their stuff for the world to see.

  42. Tauri
    Posted August 11, 2009 at 5:50 pm | Permalink

    I totally digg this :)

    Is there option where login and registration are not required? Random visitors can post their thoughts while visiting site, no registration needed? Basically something like that: confessions.net/confess.html

  43. Posted August 12, 2009 at 2:47 am | Permalink

    “That’s all you have to do. Now, your website will automatically detect logged in users, who’ll be able to read and post content, and unknown visitors, who’ll be automatically redirected to WordPress loggin panel.”

    That’s a great way to enhance my blog site that makes it look like Twitter! Only the users who can log in will be able to read the contents and put in comments.

  44. Posted August 16, 2009 at 8:43 am | Permalink

    That is a damn useful hack. You can use it to communicate with your clients and use it to update project progress. Thanks for sharing with us, I’m definitely going to give it a try.

  45. Victor Vloemans
    Posted August 18, 2009 at 4:32 pm | Permalink

    Excellent article, got me up and running in no time. As a little extra bonus, use the trick below in your sidebar.php to allow for ‘following’ people, just like on Twitter:

    It creates a list of authors and allows you to ‘follow’ an author through his/her RSS feed.

  46. Victor Vloemans
    Posted August 19, 2009 at 9:02 am | Permalink

    Sorry about my last comment, the php code snippet was excluded. The function I was referring to was: wp_list_authors(’show_fullname=1&optioncount=1&feed_image=wp-includes/images/rss.png” width=9 alt=”bla’).

    This will create a list of authors and show the little RSS icon next to their name for easy RSS subscriptions.

  47. Posted August 26, 2009 at 5:13 pm | Permalink

    Hey this is cool, I love the way people hack up wordpress and do all these really cool things with it, makes it such a creative platform to use.

    Thanks for this.

    Rob

  48. Posted September 6, 2009 at 8:05 pm | Permalink

    Have similar question to Tauri. Want people to be able to post anonymously, like FMLife dot com.

  49. Posted September 13, 2009 at 10:00 am | Permalink

    Excellent tutorial. Really useful and explains all the in-depth details. Thanks a lot for sharing.

  50. Zach
    Posted September 15, 2009 at 3:47 am | Permalink

    How do I do this without installing wordpress, like using the example.wordpress.com hosting?

  51. Posted September 19, 2009 at 12:29 am | Permalink

    Very Interesting. Might even be better than Twitter.

  52. Posted October 2, 2009 at 10:23 am | Permalink

    Thank you very much for this post.I have all ready develop some feature for the p2 theme.These features help all to make post easily in the blog.There I also add sharing image,link,question and posting feature that each authorized blogger can enjoy. You may review that development here : dhrobonil.com/test
    thanks

  53. Posted October 6, 2009 at 5:30 pm | Permalink

    That’s great, never knew it could be that easy!

  54. Marks
    Posted October 29, 2009 at 3:52 pm | Permalink

    is it possible to add a picture function, where a user can take a picture with a mobile fone or to upload a picture and send it with a tweett

  55. Posted November 7, 2009 at 10:13 am | Permalink

    Great stuff, glad I found this. Will be setting it up to perhaps try it even as note repository.

  56. Posted November 20, 2009 at 12:19 pm | Permalink

    Great tutorial. just tweeted it

  57. Posted December 9, 2009 at 10:49 am | Permalink

    Thanks for these useful informations.

  58. Posted December 13, 2009 at 2:28 pm | Permalink

    Thanks for the tutorial. I’ve created my fist micro-blogging site following your instructions.
    Please do some more tutorials, I think I’m going to get more involved in this side of design and creation.
    Thanks
    Haroun

  59. Posted December 14, 2009 at 6:12 pm | Permalink

    Hi, new to all this twitter stuff, but would like to know if you could set up a basic twitter site for me, give me a price, its bascially twitter but for a certain area, for business and tourists etc, do you think this is poss, i would try myself but im not technical, even though you have made it sound very simple, the time is a factor for me and would be good to have a professional make this for me, what do you think to this suggestion, many thanks, olly

  60. Posted December 27, 2009 at 6:50 am | Permalink

    Wordpress is no 1 . I think so :) . It is the best code for SEO (search engine optimization) . We are explore about it on our website : http://ghosts-it.com . Thank you for your post :)

  61. Posted January 10, 2010 at 7:34 am | Permalink

    This is why Wordpress is so great. You can even create a Twitter site with it. There’s endless possibilities to what you can do. I love it, and this. Thanks.

  62. Posted March 10, 2010 at 7:07 am | Permalink

    I heard P2 has server issues. I’d still try it on my other blog.

  63. Michael
    Posted March 13, 2010 at 5:48 pm | Permalink

    For people who mentioned Status.net (formerly Laconica), technically everything you publish with that software is Creative Commons Licensed 3.0.

    –Everything–

    So while that works fine for a group working on open source software or media, if your workgroup is slightly more clandestine in nature you might want to go with WordPress P2. Of course you could just *ignore* the CC license and if your site stays truly private it won’t be a problem. That makes me nervous, though. I like Creative Commons in principle. I guess I’m a slave to my ethics :)

61 Trackbacks

  1. [...] Create your own private Twitter site using WordPress Share and Enjoy: [...]

  2. [...] Create your own private Twitter site using WordPresscatswhocode.com [...]

  3. By You are now listed on FAQPAL on July 23, 2009 at 11:54 pm

    Create your own private Twitter site using WordPress…

    With the incredible popularity of Twitter theses days, many people are asking themselves how can they create their own Twitter-like network for their family, friends or company. This may be a lot easier than you think. In this tutorial, I’m going to …

  4. By - leg med nye medier. Eller noget. on July 24, 2009 at 10:30 am

    [...] Create your own private Twitter site using WordPress (tags: wordpress twitter theme tutorial) [...]

  5. [...] Create your own private Twitter site using WordPress. Filed under: WP Plugins, WP Theme [...]

  6. [...] thing in the sidebar, but I must have stuffed up the edit of sidebar.php – check this out: http://www.catswhocode.com/blog/create-your-own-private-twitter-site-using-wordpress [...]

  7. [...] bien, puedes crear un sistema similar a Twitter, pero privado, con unos sencillos [...]

  8. By Serious Monday Roundup #2 | Serradinho on July 28, 2009 at 6:50 am

    [...] Create your own private Twitter site using WordPress – With the incredible popularity of Twitter theses days, many people are asking themselves how can they create their own Twitter-like network for their family, friends or company. [...]

  9. [...] Cats Who Code Etiquetas: microblogging, temas, [...]

  10. [...] bien, puedes crear un sistema similar a Twitter, pero privado, con unos sencillos [...]

  11. [...] Who Code has published a tutorial on how to set this up. All you need is a server running WordPress and a specially created (by [...]

  12. [...] 原文:Create your own private Twitter site using WordPress 翻译:WordPress啦! This entry was posted on 星期三, 七月 29th, 2009 at 15:08 and is filed under 未分类. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site. Leave a Reply [...]

  13. [...] Here is a great resource to Create your own private Twitter site using WordPress. [...]

  14. By Sket på nettet den 30.07.09 on July 30, 2009 at 9:38 am

    [...] Create your own private Twitter site using WordPress — 7:45am via [...]

  15. [...] In: Wordpress themes 30 Jul 2009 Go to Source [...]

  16. [...] Create your own private Twitter site using WordPress Using the P2 WordPress theme to create a private Twitter-like group Easier for some than hosting their own http://laconi.ca instance, perhaps (tags: socialmedia twitter wordpress theme web networking howto p2 microblog) [...]

  17. [...] Cats & Code , dieser Blog ist bisher bei uns noch nicht aufgetaucht, aber dort findet sich ein genialer Artikel wie man mit Wordpress sein “eigenes” Twitter bastelt. [...]

  18. [...] Create your own private Twitter site using WordPress [...]

  19. [...] Create your own private Twitter site using WordPress  [...]

  20. [...] Como criar um twitter privado usando wordpress. Imagina uma agência grande, onde você precisa controlar/coordenar o projeto entre várias pessoas? Pois, um tema do wordpress pra isso. [...]

  21. By 30+ Useful WordPress Tutorials on August 11, 2009 at 5:05 pm

    [...] 1. Create your own private Twitter site using WordPress [...]

  22. [...] Create your own private Twitter site using WordPress [...]

  23. [...] Create your own private Twitter site using WordPress [...]

  24. [...] Create your own private Twitter site using WordPress [...]

  25. [...] 在你的页面创建一个twitter页面 [...]

  26. [...] el poder convertirlo en un sitio personalizado  con funciones similares a Twtter lo demuestra. El Tutorial de Jean-Baptiste Jung nos presenta los primeros pasos, algo que parece simple al principio tiene sus pegas, que con un [...]

  27. By 30+ New Useful WordPress Tricks & Hacks « test on August 14, 2009 at 11:26 am

    [...] Create your own private Twitter site using WordPress [...]

  28. [...] Create your own private Twitter site using WordPress [...]

  29. [...] Create your own private Twitter site using WordPress [...]

  30. [...] Create your own private Twitter site using WordPress [...]

  31. [...] Create your own private Twitter site using WordPress [...]

  32. [...] [...]

  33. [...] Create your own private Twitter site using WordPress [...]

  34. [...] can make history | Video on TED.comSeoworld » Blog Archive » Network를 Valuation하는 방법Create your own private Twitter site using WordPressHow to make a translatable WordPress theme Published RichWP.com의 무료 워드프레스 테마, [...]

  35. [...] Create your own private Twitter site using WordPress [...]

  36. By 30+ Tips&Plugin per Wordpress | GeekTwice on August 20, 2009 at 10:05 am

    [...] Create Your Own Private Twitter Site Using WordPress [...]

  37. By Mes favoris du 20-08-09 on August 21, 2009 at 12:45 am

    [...] Create your own private Twitter site using WordPress – [...]

  38. [...] Create your own private Twitter site using WordPress [...]

  39. [...] Este plugins te permite controlar la visibilidad de los elementos de Wordpress en función del país de origen de los usuarios. Puede ocultar o mostrar algunos elementos de una página o algunas secciones de un post para un país en particular. 33. Crea tu propio sitio de Twitter privado mediante WordPress [...]

  40. [...] Create your own private Twitter site using WordPress [...]

  41. [...] 36. Create your own private Twitter site using WordPress [...]

  42. [...] Create your own private Twitter site using WordPress [...]

  43. [...] Create your own private Twitter site using WordPress [...]

  44. [...] Create Your Own Private Twitter Site Using WordPress [...]

  45. By links for 2009-09-07 | On9 Systems on September 8, 2009 at 2:13 am

    [...] Create your own private Twitter site using WordPress (tags: wordpress twitter howto hacks themes tutorials community webdesign) [...]

  46. [...] Create Your Own Twitter Site Using WordPress [...]

  47. [...] Create your own private Twitter site using WordPress [...]

  48. [...] 1. Create Your Own Twitter Site Using WordPress [...]

  49. [...] 1. Create Your Own Twitter Site Using WordPress [...]

  50. [...] Create Your Own Private Twitter Site Using WordPress – A quick tutorial for creating a private, Twitter-like network using WordPress. [...]

  51. [...] Create Your Own Private Twitter Site Using WordPress – A quick tutorial for creating a private, Twitter-like network using WordPress. [...]

  52. [...] Create your own private Twitter site using WordPress [...]

  53. By links for 2009-10-10 | bloggersUNITED on October 11, 2009 at 3:36 am

    [...] Create your own private Twitter site using WordPress (tags: WordPress twitter howto tutorials webdesign hacks community themes) [...]

  54. [...] Create your own private Twitter site using WordPress [...]

  55. [...] Create Your Own Private Twitter Site Using WordPress – A quick tutorial for creating a private, Twitter-like network using WordPress. [...]

  56. [...] 9. Creaza-ti propriul Twitter cu ajutorul Wordpress [...]

  57. By 30+ Useful WordPress Tutorials | The Apple Tech Blog on December 14, 2009 at 4:19 pm

    [...] 1. Create your own private Twitter site using WordPress [...]

  58. [...] 13. Create Your Own Private Twitter Site using WordPress [...]

  59. By Most Wanted Wordpress Hacks and Tricks | My Blog on March 19, 2010 at 2:30 am

    [...] Create your own private Twitter site using WordPress Turn your Wordpress blog into Twitter alike [...]

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Subscribe without commenting

  • Smashing Network
WordPress Appliance - Powered by TurnKey Linux