<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Thinking In Wordpress:-Delving deep into wordpress</title>
	
	<link>http://www.thinkinginwordpress.com</link>
	<description>Let us digg deep into the wordpress</description>
	<lastBuildDate>Thu, 22 Jul 2010 12:41:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ThinkingInWordpress" /><feedburner:info uri="thinkinginwordpress" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>ThinkingInWordpress</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Force BuddyPress to allow unique group names only</title>
		<link>http://feedproxy.google.com/~r/ThinkingInWordpress/~3/_LvCQW-KcBI/</link>
		<comments>http://www.thinkinginwordpress.com/2010/07/force-buddypress-to-allow-unique-groups-names-only/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 12:32:52 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[buddypress]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=358</guid>
		<description><![CDATA[As you may be knowing, BuddyPress does not forces users to create unique group names. If you are the webmaster of a social network, you may not want to allow same group name for multiple groups as it will cause confusions among the users. So, here is a small code snippet to force buddypress to [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F07%2Fforce-buddypress-to-allow-unique-groups-names-only%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F07%2Fforce-buddypress-to-allow-unique-groups-names-only%2F&amp;source=sbrajesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>As you may be knowing, BuddyPress does not forces users to create unique group names. If you are the webmaster of a social network, you may not want to allow same group name for multiple groups as it will cause confusions among the users. So, here is a small code snippet to force buddypress to allow creation of unique groups only.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;groups_group_name_before_save&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;allow_unique_names_only&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> allow_unique_names_only<span style="color: #009900;">&#40;</span><span style="color: #000088;">$name</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$bp</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #000088;">$groups</span><span style="color: #339933;">=</span>BP_Groups_Group<span style="color: #339933;">::</span><span style="color: #004000;">search_groups</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$name</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">//search groups</span>
  <span style="color: #000088;">$duplicate</span><span style="color: #339933;">=</span><span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'group-details'</span><span style="color: #339933;">==</span><span style="color: #000088;">$bp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">groups</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">current_create_step</span><span style="color: #339933;">&amp;&amp;!</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$groups</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">&amp;&amp;</span><span style="color: #000088;">$groups</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'total'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">&gt;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
      <span style="color: #666666; font-style: italic;">//we have match, but is there an exact match</span>
      <span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$groups</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'groups'</span><span style="color: #009900;">&#93;</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$g</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
         <span style="color: #000088;">$group</span><span style="color: #339933;">=</span><span style="color: #000000; font-weight: bold;">new</span> BP_Groups_Group<span style="color: #009900;">&#40;</span><span style="color: #000088;">$g</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">group_id</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
         <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$group</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">name</span><span style="color: #339933;">==</span><span style="color: #000088;">$name</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
              <span style="color: #000088;">$duplicate</span><span style="color: #339933;">=</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">//found duplicate</span>
              <span style="color: #b1b100;">break</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">//break the loop;</span>
          <span style="color: #009900;">&#125;</span>
      <span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$duplicate</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
        bp_core_add_message<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;A group with this name already exists. Please Choose another name.&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;error&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        bp_core_redirect<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$bp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">root_domain</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'/'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$bp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">groups</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">slug</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'/create/step/'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$bp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">groups</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">current_create_step</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'/'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #009900;">&#125;</span>
 <span style="color: #b1b100;">return</span> <span style="color: #000088;">$name</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Put the above code in your bp-custom.php and you are good to go. Go ahead and test by creating groups with same name. It will inform you that a group with same exists, please use another name.</p>
<p>Credit: Thanks goes to &#8220;gwu&#8221; for asking this question in <a href="http://buddydev.com/forums/topic/unique-group-names">buddydev forum</a>.</p>
<p> I am looking forward to your comments.</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2010/07/force-buddypress-to-allow-unique-groups-names-only/&amp;Title=Force BuddyPress to allow unique group names only' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2010/07/force-buddypress-to-allow-unique-groups-names-only/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2010/07/force-buddypress-to-allow-unique-groups-names-only/&amp;title=Force BuddyPress to allow unique group names only' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2010/07/force-buddypress-to-allow-unique-groups-names-only/&amp;title=Force BuddyPress to allow unique group names only' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Force BuddyPress to allow unique group names only&amp;url=http://www.thinkinginwordpress.com/2010/07/force-buddypress-to-allow-unique-groups-names-only/&amp;title=Force BuddyPress to allow unique group names only' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2010/07/force-buddypress-to-allow-unique-groups-names-only/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2010/07/force-buddypress-to-allow-unique-groups-names-only/&amp;title=Force BuddyPress to allow unique group names only' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2010/07/force-buddypress-to-allow-unique-groups-names-only/&amp;bm_description=Force BuddyPress to allow unique group names only' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2010/07/force-buddypress-to-allow-unique-groups-names-only/&amp;title=Force BuddyPress to allow unique group names only' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2010/07/force-buddypress-to-allow-unique-groups-names-only/&amp;title=Force BuddyPress to allow unique group names only' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2010/07/force-buddypress-to-allow-unique-groups-names-only/&amp;title=Force BuddyPress to allow unique group names only' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2010/07/force-buddypress-to-allow-unique-groups-names-only/&amp;title=Force BuddyPress to allow unique group names only' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2010/07/force-buddypress-to-allow-unique-groups-names-only/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Force BuddyPress to allow unique group names only&amp;uri=http://www.thinkinginwordpress.com/2010/07/force-buddypress-to-allow-unique-groups-names-only/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (74.125.94.80) )</small> ccwp100xcfgdfghjkl764532sdfb<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=_LvCQW-KcBI:7gLhzOwQqI4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=_LvCQW-KcBI:7gLhzOwQqI4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?i=_LvCQW-KcBI:7gLhzOwQqI4:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThinkingInWordpress/~4/_LvCQW-KcBI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2010/07/force-buddypress-to-allow-unique-groups-names-only/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.thinkinginwordpress.com/2010/07/force-buddypress-to-allow-unique-groups-names-only/</feedburner:origLink></item>
		<item>
		<title>WordPress 3.0 and the problem with Mass Updates fail</title>
		<link>http://feedproxy.google.com/~r/ThinkingInWordpress/~3/XDxXwU5G8_M/</link>
		<comments>http://www.thinkinginwordpress.com/2010/07/wordpress-3-0-and-the-problem-with-mass-updates-fail/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 19:51:54 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[mass updater]]></category>
		<category><![CDATA[wp 3.0]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=353</guid>
		<description><![CDATA[Have you got the message &#8220;Briefly unavailable for scheduled maintenance. Check back in a minute&#8220;. Well, It is far too common with wordpress 3.0 if you are using mass updater and if the update fails. WordPress puts your site to maintinence mode while you use mass updater and if the update fails(or one of the [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F07%2Fwordpress-3-0-and-the-problem-with-mass-updates-fail%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F07%2Fwordpress-3-0-and-the-problem-with-mass-updates-fail%2F&amp;source=sbrajesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Have you got the message &#8220;<strong>Briefly unavailable for scheduled maintenance. Check back in a minute</strong>&#8220;. Well, It is far too common with wordpress 3.0 if you are using mass updater and if the update fails.</p>
<p><a href="http://www.thinkinginwordpress.com/wp-content/uploads/2010/07/mass-update.png"><img class="aligncenter size-full wp-image-354" title="mass-update" src="http://www.thinkinginwordpress.com/wp-content/uploads/2010/07/mass-update.png" alt="" width="235" height="288" /></a></p>
<p>WordPress puts your site to maintinence mode while you use mass updater and if the update fails(or one of the update fails) wordpress does not put back the site to live mode and making everything practically inaccesible</p>
<p>There is an easy workaround.</p>
<p>Check the folder in which wordpress is installed and look for a file called <strong>.maintinence</strong>. Once you locate it, just<strong> delete it</strong> and your site will be back to normal.</p>
<p><a href="http://www.thinkinginwordpress.com/wp-content/uploads/2010/07/maintinence.png"><img class="aligncenter size-medium wp-image-355" title="maintinence" src="http://www.thinkinginwordpress.com/wp-content/uploads/2010/07/maintinence-300x150.png" alt="" width="300" height="150" /></a></p>
<p>I believe the mass plugin updater is a welcome addition but leaving the site in maintenance mode when update fails is not a good thing. Anyway, that&#8217;s my opinion. What do you think of it? Have you faced the similar problem. If yes, what was your workaround, I would love to hear from you.</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2010/07/wordpress-3-0-and-the-problem-with-mass-updates-fail/&amp;Title=WordPress 3.0 and the problem with Mass Updates fail' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2010/07/wordpress-3-0-and-the-problem-with-mass-updates-fail/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2010/07/wordpress-3-0-and-the-problem-with-mass-updates-fail/&amp;title=WordPress 3.0 and the problem with Mass Updates fail' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2010/07/wordpress-3-0-and-the-problem-with-mass-updates-fail/&amp;title=WordPress 3.0 and the problem with Mass Updates fail' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=WordPress 3.0 and the problem with Mass Updates fail&amp;url=http://www.thinkinginwordpress.com/2010/07/wordpress-3-0-and-the-problem-with-mass-updates-fail/&amp;title=WordPress 3.0 and the problem with Mass Updates fail' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2010/07/wordpress-3-0-and-the-problem-with-mass-updates-fail/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2010/07/wordpress-3-0-and-the-problem-with-mass-updates-fail/&amp;title=WordPress 3.0 and the problem with Mass Updates fail' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2010/07/wordpress-3-0-and-the-problem-with-mass-updates-fail/&amp;bm_description=WordPress 3.0 and the problem with Mass Updates fail' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2010/07/wordpress-3-0-and-the-problem-with-mass-updates-fail/&amp;title=WordPress 3.0 and the problem with Mass Updates fail' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2010/07/wordpress-3-0-and-the-problem-with-mass-updates-fail/&amp;title=WordPress 3.0 and the problem with Mass Updates fail' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2010/07/wordpress-3-0-and-the-problem-with-mass-updates-fail/&amp;title=WordPress 3.0 and the problem with Mass Updates fail' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2010/07/wordpress-3-0-and-the-problem-with-mass-updates-fail/&amp;title=WordPress 3.0 and the problem with Mass Updates fail' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2010/07/wordpress-3-0-and-the-problem-with-mass-updates-fail/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=WordPress 3.0 and the problem with Mass Updates fail&amp;uri=http://www.thinkinginwordpress.com/2010/07/wordpress-3-0-and-the-problem-with-mass-updates-fail/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (74.125.94.80) )</small> ccwp100xcfgdfghjkl764532sdfb<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=XDxXwU5G8_M:_CnNFJmjlWQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=XDxXwU5G8_M:_CnNFJmjlWQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?i=XDxXwU5G8_M:_CnNFJmjlWQ:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThinkingInWordpress/~4/XDxXwU5G8_M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2010/07/wordpress-3-0-and-the-problem-with-mass-updates-fail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.thinkinginwordpress.com/2010/07/wordpress-3-0-and-the-problem-with-mass-updates-fail/</feedburner:origLink></item>
		<item>
		<title>Changing default component for landing page of User Profile in Buddypress</title>
		<link>http://feedproxy.google.com/~r/ThinkingInWordpress/~3/VZsMeSIFaLs/</link>
		<comments>http://www.thinkinginwordpress.com/2010/06/changing-default-component-for-landing-page-of-user-profile-in-buddypress/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 09:58:19 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[bp-default-compoent]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=347</guid>
		<description><![CDATA[So you must have seen that the default landing page for a user profile in BuddyPress is User activity page. Sometimes you may want to change it to rather the profile page or wire or some other page. The good thing is, it&#8217;s easy, well super easy to do that. What you need to do [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F06%2Fchanging-default-component-for-landing-page-of-user-profile-in-buddypress%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F06%2Fchanging-default-component-for-landing-page-of-user-profile-in-buddypress%2F&amp;source=sbrajesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>So you must have seen that the default landing page for a user profile in BuddyPress is User activity page. Sometimes you may want to change it to rather the profile page or wire or some other page.<br />
The good thing is, it&#8217;s easy, well super easy to do that. What you need to do is put a line in bp-custom.php</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//define the default component</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;BP_DEFAULT_COMPONENT&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;profile&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">// Now when you click on a user name link, You will land on User's profile not user's activity page</span></pre></div></div>

<p>Similarly, you can use any of the active component as the landing page. For example, if you are using <a href="http://buddydev.com/buddypress/here-is-the-bp-wire-for-putting-the-buddypress-wire-back-to-buddypress-1-2/">my wire plugin</a>, you can define <strong>BP_DEFAULT_COMPONENT</strong> to be &#8220;wire&#8221; and the wire will be the landing page. Or if you want, you may define &#8220;groups&#8221; and User&#8217;s Groups page will be the landing page but I don&#8217;t think you will ever want to do that.<br />
I see only two three practical uses of it.</p>
<p>1. Using xprofile page(or profile page) as default landing page<br />
In that case define BP_DEFAULT_COMPONENT to be &#8220;profile&#8221;</p>
<p>2. Using Wire as the landing page<br />
In that case define BP_DEFAULT_COMPONENT to be &#8220;wire&#8221; or what ever you have put as BP_WIRE_SLUG(in case you have customized the slug).</p>
<p>3. For creating a landing page which aggregates user activities, shows users groups and others<br />
In that case, I assume you have created a custom landing page(which is pretty easy and I will be discussing about it in one of the articles) and want it to be the default case.</p>
<p>So try changing and experimenting with &#8220;BP_DEFAULT_COMPONENT&#8221;  and may be you can have better usage ideas for it . As always, any comment suggestions or anything, please let me know in comments.</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2010/06/changing-default-component-for-landing-page-of-user-profile-in-buddypress/&amp;Title=Changing default component for landing page of User Profile in Buddypress' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2010/06/changing-default-component-for-landing-page-of-user-profile-in-buddypress/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2010/06/changing-default-component-for-landing-page-of-user-profile-in-buddypress/&amp;title=Changing default component for landing page of User Profile in Buddypress' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2010/06/changing-default-component-for-landing-page-of-user-profile-in-buddypress/&amp;title=Changing default component for landing page of User Profile in Buddypress' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Changing default component for landing page of User Profile in Buddypress&amp;url=http://www.thinkinginwordpress.com/2010/06/changing-default-component-for-landing-page-of-user-profile-in-buddypress/&amp;title=Changing default component for landing page of User Profile in Buddypress' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2010/06/changing-default-component-for-landing-page-of-user-profile-in-buddypress/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2010/06/changing-default-component-for-landing-page-of-user-profile-in-buddypress/&amp;title=Changing default component for landing page of User Profile in Buddypress' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2010/06/changing-default-component-for-landing-page-of-user-profile-in-buddypress/&amp;bm_description=Changing default component for landing page of User Profile in Buddypress' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2010/06/changing-default-component-for-landing-page-of-user-profile-in-buddypress/&amp;title=Changing default component for landing page of User Profile in Buddypress' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2010/06/changing-default-component-for-landing-page-of-user-profile-in-buddypress/&amp;title=Changing default component for landing page of User Profile in Buddypress' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2010/06/changing-default-component-for-landing-page-of-user-profile-in-buddypress/&amp;title=Changing default component for landing page of User Profile in Buddypress' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2010/06/changing-default-component-for-landing-page-of-user-profile-in-buddypress/&amp;title=Changing default component for landing page of User Profile in Buddypress' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2010/06/changing-default-component-for-landing-page-of-user-profile-in-buddypress/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Changing default component for landing page of User Profile in Buddypress&amp;uri=http://www.thinkinginwordpress.com/2010/06/changing-default-component-for-landing-page-of-user-profile-in-buddypress/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (74.125.94.80) )</small> ccwp100xcfgdfghjkl764532sdfb<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=VZsMeSIFaLs:wl0YJqo4yD8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=VZsMeSIFaLs:wl0YJqo4yD8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?i=VZsMeSIFaLs:wl0YJqo4yD8:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThinkingInWordpress/~4/VZsMeSIFaLs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2010/06/changing-default-component-for-landing-page-of-user-profile-in-buddypress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.thinkinginwordpress.com/2010/06/changing-default-component-for-landing-page-of-user-profile-in-buddypress/</feedburner:origLink></item>
		<item>
		<title>Enable Blog Admin menu in buddypress adminbar for Single User wordpress</title>
		<link>http://feedproxy.google.com/~r/ThinkingInWordpress/~3/6UkESGI0fLg/</link>
		<comments>http://www.thinkinginwordpress.com/2010/06/enable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 08:40:05 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[buddypress]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=341</guid>
		<description><![CDATA[Everyone likes shortcuts(and may be a few not), and so do I. Since my personal preference of WordPress Multiuser(or now multisite/multi network what ever you call them) I missed one thing the most while working on my BuddyPress site with WordPress single User and It was the My Blogs drop down menu. It provided me [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F06%2Fenable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F06%2Fenable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress%2F&amp;source=sbrajesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Everyone likes shortcuts(and may be a few not), and so do I. Since my personal preference of WordPress Multiuser(or now multisite/multi network what ever you call them) I missed one thing the most while working on my BuddyPress site with WordPress single User and It was the <strong>My Blogs</strong> drop down menu. It provided me with a quick option to navigate to WordPress Dashboard or to new post screen and so on. On single user WordPress I had to manually type wp-admin in the url to get to the dashboard.</p>
<p>Fade up with the number of times I had to type this, I rather created a small code snippet which enabled me to navigate to the dashboard/posts screen with the same efficiency(well even took less time as it has to be a single level navigation).<br />
here is a screenshot from my test site.<br />
<a href="http://www.thinkinginwordpress.com/wp-content/uploads/2010/06/blog-admin-menu.png"><img class="aligncenter size-medium wp-image-342" title="blog-admin-menu" src="http://www.thinkinginwordpress.com/wp-content/uploads/2010/06/blog-admin-menu-300x129.png" alt="" width="300" height="129" /></a>And here is the code snippet to enable this</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'bp_adminbar_menus'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'bp_adminbar_blogs_menu_single_wp'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">6</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> bp_adminbar_blogs_menu_single_wp<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$bp</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span>is_user_logged_in<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">||!</span>current_user_can<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;publish_posts&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #666666; font-style: italic;">//show this menu to author</span>
		<span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000088;">$blog</span> <span style="color: #339933;">=</span>bpdev_get_single_wp_blog_info<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
&nbsp;
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;li id=&quot;bp-adminbar-blogs-menu&quot;&gt;&lt;a href=&quot;'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$bp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">root_domain</span> <span style="color: #339933;">.</span><span style="color: #0000ff;">'/wp-admin/&quot;&gt;'</span><span style="color: #339933;">;</span>
&nbsp;
	_e<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'Blog Admin'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'buddypress'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;/a&gt;'</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;ul&gt;'</span><span style="color: #339933;">;</span>
&nbsp;
&nbsp;
&nbsp;
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$blog</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #000088;">$alt</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">' class=&quot;alt&quot;'</span><span style="color: #339933;">;</span>
			<span style="color: #000088;">$site_url</span> <span style="color: #339933;">=</span> esc_attr<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$blog</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">siteurl</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
			<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;li'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$alt</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&gt;'</span><span style="color: #339933;">;</span>
&nbsp;
			<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;li class=&quot;alt&quot;&gt;&lt;a href=&quot;'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$site_url</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'wp-admin/&quot;&gt;'</span> <span style="color: #339933;">.</span> __<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'Dashboard'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'buddypress'</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&lt;/a&gt;&lt;/li&gt;'</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;li&gt;&lt;a href=&quot;'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$site_url</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'wp-admin/post-new.php&quot;&gt;'</span> <span style="color: #339933;">.</span> __<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'New Post'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'buddypress'</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&lt;/a&gt;&lt;/li&gt;'</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;li class=&quot;alt&quot;&gt;&lt;a href=&quot;'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$site_url</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'wp-admin/edit.php&quot;&gt;'</span> <span style="color: #339933;">.</span> __<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'Manage Posts'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'buddypress'</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&lt;/a&gt;&lt;/li&gt;'</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;li&gt;&lt;a href=&quot;'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$site_url</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'wp-admin/edit-comments.php&quot;&gt;'</span> <span style="color: #339933;">.</span> __<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'Manage Comments'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'buddypress'</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&lt;/a&gt;&lt;/li&gt;'</span><span style="color: #339933;">;</span>
&nbsp;
&nbsp;
		<span style="color: #009900;">&#125;</span>
&nbsp;
&nbsp;
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;/ul&gt;'</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;/li&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #666666; font-style: italic;">//create dummy blog object, we can even avoid it too, as we only need site_url and nothing else</span>
<span style="color: #000000; font-weight: bold;">function</span> bpdev_get_single_wp_blog_info<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$bp</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$blog</span><span style="color: #339933;">=</span><span style="color: #000000; font-weight: bold;">new</span> stdClass<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$blog</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">siteurl</span><span style="color: #339933;">=</span><span style="color: #000088;">$bp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">root_domain</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;/&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$blog</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">name</span><span style="color: #339933;">=</span>get_bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'name'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">return</span> <span style="color: #000088;">$blog</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>In fact, the code for <strong>bp_adminbar_blogs_menu_single_wp</strong> is actually taken from &#8220;bp_adminbar_blogs_menu&#8221;[bp-core-adminbar.php] and modified for our purpose.<br />
You can put the above code in your themes functions.php or in bp-custom.php or just create a plugin and drop it. That&#8217;s it.<br />
Hope it helps, please do let me know if you use it and find any issues.</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2010/06/enable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress/&amp;Title=Enable Blog Admin menu in buddypress adminbar for Single User wordpress' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2010/06/enable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2010/06/enable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress/&amp;title=Enable Blog Admin menu in buddypress adminbar for Single User wordpress' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2010/06/enable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress/&amp;title=Enable Blog Admin menu in buddypress adminbar for Single User wordpress' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Enable Blog Admin menu in buddypress adminbar for Single User wordpress&amp;url=http://www.thinkinginwordpress.com/2010/06/enable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress/&amp;title=Enable Blog Admin menu in buddypress adminbar for Single User wordpress' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2010/06/enable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2010/06/enable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress/&amp;title=Enable Blog Admin menu in buddypress adminbar for Single User wordpress' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2010/06/enable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress/&amp;bm_description=Enable Blog Admin menu in buddypress adminbar for Single User wordpress' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2010/06/enable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress/&amp;title=Enable Blog Admin menu in buddypress adminbar for Single User wordpress' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2010/06/enable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress/&amp;title=Enable Blog Admin menu in buddypress adminbar for Single User wordpress' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2010/06/enable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress/&amp;title=Enable Blog Admin menu in buddypress adminbar for Single User wordpress' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2010/06/enable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress/&amp;title=Enable Blog Admin menu in buddypress adminbar for Single User wordpress' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2010/06/enable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Enable Blog Admin menu in buddypress adminbar for Single User wordpress&amp;uri=http://www.thinkinginwordpress.com/2010/06/enable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (74.125.94.80) )</small> ccwp100xcfgdfghjkl764532sdfb<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=6UkESGI0fLg:yMOYwZNk7bs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=6UkESGI0fLg:yMOYwZNk7bs:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?i=6UkESGI0fLg:yMOYwZNk7bs:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThinkingInWordpress/~4/6UkESGI0fLg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2010/06/enable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.thinkinginwordpress.com/2010/06/enable-blog-admin-menu-in-buddypress-adminbar-for-single-user-wordpress/</feedburner:origLink></item>
		<item>
		<title>Automatically adding users to all blog on your wpmu/wp multisite blog network</title>
		<link>http://feedproxy.google.com/~r/ThinkingInWordpress/~3/YQ8XMA4G8YY/</link>
		<comments>http://www.thinkinginwordpress.com/2010/06/automatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 10:28:53 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress Mu]]></category>
		<category><![CDATA[buddypress]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=327</guid>
		<description><![CDATA[There are times when you want all of the registered member on your blog network to be members of all the blog. WordPress does it differently. By default all the registered users are added to the main blog with the role you have specified(or &#8220;subscriber&#8221; by default ). If the user creates a new blog, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F06%2Fautomatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F06%2Fautomatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network%2F&amp;source=sbrajesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>There are times when you want all of the registered member on your blog network to be members of all the blog. WordPress does it differently. By default all the registered users are added to the main blog with the role you have specified(or &#8220;subscriber&#8221; by default ). If the user creates a new blog, they are removed from the main blog and added to the new blog they created.</p>
<p>My solution here will allow to automatically add users to all blogs on your network, it does not matter much if they register a new one or they do not have a blog but just a registered member. In case the user registers new blog, this function will do no harm the user will be admin of the new blog as in normal case.</p>
<p>To our help, there are two functions</p>
<p><strong>is_blog_user</strong>():-It checks whether the current logged in user is a member of the current blog or not.</p>
<p><strong>add_user_to_blog</strong>($blog_id,$user_id,$role):- it allows you to add an existing user to a blog with the specific role where $role can be &#8220;subscriber&#8221;,&#8221;author&#8221;,&#8221;editor&#8221;,&#8221;contributor&#8221; or &#8220;administrator&#8221;</p>
<p>Now the code, putting the following code in your theme&#8217;s functions.php will do the job or you may wrap it as a plugin in case you want it that way</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&nbsp;
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'bpdev_add_user_to_blog'</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">10</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">//hook our function</span>
&nbsp;
<span style="color: #666666; font-style: italic;">/*add logged in user to current blog*/</span>
<span style="color: #000000; font-weight: bold;">function</span> bpdev_add_user_to_blog<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>is_user_logged_in<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
<span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">//do not do anything</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$current_user</span><span style="color: #339933;">,</span><span style="color: #000088;">$blog_id</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>is_blog_user<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #666666; font-style: italic;">//check for current membership</span>
add_user_to_blog<span style="color: #009900;">&#40;</span><span style="color: #000088;">$blog_id</span><span style="color: #339933;">,</span> <span style="color: #000088;">$current_user</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;subscriber&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">//give subscriber role for current blog</span>
&nbsp;
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>And if you are using buddypress, you can put the above code in bp-custom.php.</p>
<p>What it does:-</p>
<p>When a logged in user visits a blog on your network, it checks whether he/she is a member of the current blog or not. If not, it adds them as a member to the current blog.</p>
<p>I hope it helps in some of the cases. Let me know it it works for you or not ?</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2010/06/automatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network/&amp;Title=Automatically adding users to all blog on your wpmu/wp multisite blog network' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2010/06/automatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2010/06/automatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network/&amp;title=Automatically adding users to all blog on your wpmu/wp multisite blog network' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2010/06/automatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network/&amp;title=Automatically adding users to all blog on your wpmu/wp multisite blog network' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Automatically adding users to all blog on your wpmu/wp multisite blog network&amp;url=http://www.thinkinginwordpress.com/2010/06/automatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network/&amp;title=Automatically adding users to all blog on your wpmu/wp multisite blog network' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2010/06/automatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2010/06/automatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network/&amp;title=Automatically adding users to all blog on your wpmu/wp multisite blog network' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2010/06/automatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network/&amp;bm_description=Automatically adding users to all blog on your wpmu/wp multisite blog network' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2010/06/automatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network/&amp;title=Automatically adding users to all blog on your wpmu/wp multisite blog network' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2010/06/automatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network/&amp;title=Automatically adding users to all blog on your wpmu/wp multisite blog network' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2010/06/automatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network/&amp;title=Automatically adding users to all blog on your wpmu/wp multisite blog network' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2010/06/automatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network/&amp;title=Automatically adding users to all blog on your wpmu/wp multisite blog network' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2010/06/automatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Automatically adding users to all blog on your wpmu/wp multisite blog network&amp;uri=http://www.thinkinginwordpress.com/2010/06/automatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (74.125.94.80) )</small> ccwp100xcfgdfghjkl764532sdfb<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=YQ8XMA4G8YY:gbjfQOPckJg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=YQ8XMA4G8YY:gbjfQOPckJg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?i=YQ8XMA4G8YY:gbjfQOPckJg:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThinkingInWordpress/~4/YQ8XMA4G8YY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2010/06/automatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.thinkinginwordpress.com/2010/06/automatically-adding-users-to-all-blog-on-your-wpmuwp-multisite-blog-network/</feedburner:origLink></item>
		<item>
		<title>A New begining for ThinkingInWordPress.com</title>
		<link>http://feedproxy.google.com/~r/ThinkingInWordpress/~3/Wju6icY-wTY/</link>
		<comments>http://www.thinkinginwordpress.com/2010/06/a-new-begining-for-thinkinginwordpress-com/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 10:11:12 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=325</guid>
		<description><![CDATA[Here I am, once again, but I am not here to say apologies or provide reasons for my past reluctance to blog here. I am writng the new post to let you know, my feelins for this blog has resurfaced again and I am back to have a new begining for ThinkingInWordPress.com It was always [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F06%2Fa-new-begining-for-thinkinginwordpress-com%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F06%2Fa-new-begining-for-thinkinginwordpress-com%2F&amp;source=sbrajesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Here I am, once again, but I am not here to say apologies or provide reasons for my past reluctance to blog here. I am writng the new post to let you know, my feelins for this blog has resurfaced again and I am back to have a new begining for ThinkingInWordPress.com</p>
<p>It was always a fun to write here and listening to you all but things changed and I got busy with the other <a href="http://buddydev.com">site</a> so never found myself time and energy to blog here and even if I tried to look back sometime, I could not find something good to start with.</p>
<p>Now, as wp3.0 is out and you all must be busy upgrading and having fun with it, I thought it as the right time to start all over again.  I am going to write regular again with all the tips/tricks I accumulated  in the last 6 months of absence from this site.</p>
<p>There are a few questions though.I see there are more than 100 comments which needs to be answered but they have lost the relevance to be answered as   most of them were made 2-3 months ago and even if I reply them now, it won&#8217;t be useful. So I am not going to reply those old comments but will be replying any comments from now onwards again. If you have any question/confusion about the things on this site, please feel free to comment, I will be glad to helping you again.</p>
<p>And yes,  I will be writing more than 3 posts a week for now  couple of months to make it even for my absence. Hope to see you all again here <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2010/06/a-new-begining-for-thinkinginwordpress-com/&amp;Title=A New begining for ThinkingInWordPress.com' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2010/06/a-new-begining-for-thinkinginwordpress-com/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2010/06/a-new-begining-for-thinkinginwordpress-com/&amp;title=A New begining for ThinkingInWordPress.com' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2010/06/a-new-begining-for-thinkinginwordpress-com/&amp;title=A New begining for ThinkingInWordPress.com' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=A New begining for ThinkingInWordPress.com&amp;url=http://www.thinkinginwordpress.com/2010/06/a-new-begining-for-thinkinginwordpress-com/&amp;title=A New begining for ThinkingInWordPress.com' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2010/06/a-new-begining-for-thinkinginwordpress-com/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2010/06/a-new-begining-for-thinkinginwordpress-com/&amp;title=A New begining for ThinkingInWordPress.com' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2010/06/a-new-begining-for-thinkinginwordpress-com/&amp;bm_description=A New begining for ThinkingInWordPress.com' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2010/06/a-new-begining-for-thinkinginwordpress-com/&amp;title=A New begining for ThinkingInWordPress.com' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2010/06/a-new-begining-for-thinkinginwordpress-com/&amp;title=A New begining for ThinkingInWordPress.com' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2010/06/a-new-begining-for-thinkinginwordpress-com/&amp;title=A New begining for ThinkingInWordPress.com' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2010/06/a-new-begining-for-thinkinginwordpress-com/&amp;title=A New begining for ThinkingInWordPress.com' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2010/06/a-new-begining-for-thinkinginwordpress-com/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=A New begining for ThinkingInWordPress.com&amp;uri=http://www.thinkinginwordpress.com/2010/06/a-new-begining-for-thinkinginwordpress-com/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (74.125.94.80) )</small> ccwp100xcfgdfghjkl764532sdfb<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=Wju6icY-wTY:DcyZPwInBU4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=Wju6icY-wTY:DcyZPwInBU4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?i=Wju6icY-wTY:DcyZPwInBU4:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThinkingInWordpress/~4/Wju6icY-wTY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2010/06/a-new-begining-for-thinkinginwordpress-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.thinkinginwordpress.com/2010/06/a-new-begining-for-thinkinginwordpress-com/</feedburner:origLink></item>
		<item>
		<title>Get The List of all admins for a Blog on Wpmu</title>
		<link>http://feedproxy.google.com/~r/ThinkingInWordpress/~3/ZWVFBPk_SZE/</link>
		<comments>http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 20:49:49 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress Mu]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=318</guid>
		<description><![CDATA[While working with my most recent plugin, I had an issue of finding all the admins of a blog on the wpmu network. after a couple of minutes, I implemented a small hack and It worked like charm. So here you go. Please Note, I have used User level, which is backward compatible and is [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F02%2Fget-the-list-of-all-admins-for-a-blog-on-wpmu%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F02%2Fget-the-list-of-all-admins-for-a-blog-on-wpmu%2F&amp;source=sbrajesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>While working with my most recent plugin, I had an  issue of finding all the admins of a blog on the wpmu network. after a couple of minutes, I implemented a small hack and It worked like charm.<br />
So here you go.<br />
Please Note, I have used User level, which is backward compatible and is there because of the legacy plugins support(according to codex), But this hack solves the problem to iterate through the Roles/capabilities.<br />
So here is the code.</p>
<pre class="brush: php">

function get_admin_users_for_blog($blog_id) {
global $wpdb;
$key=&quot;wp_&quot;.$blog_id.&quot;_user_level&quot;;
return $wpdb-&gt;get_results($wpdb-&gt;prepare(&quot;SELECT user_id from $wpdb-&gt;usermeta AS um WHERE um.meta_key =&#039;&quot;. $key.&quot;&#039; AND um.meta_value=10&quot;));
}

//and now call it

global $current_blog;

$admins=get_admin_users_for_blog($current_blog-&gt;blog_id);

//now you have $admins as an array of object, Just Iterate over it and do some stuff, well, I will just print out <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> 

foreach($admins as $admin)

echo &quot;ID:&quot;.$admin-&gt;ID;

///hmm you can use it for more productive reasons <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> 
</pre>
<p>That&#8217;s the shortest code I could produce, I know, The better way will be to loop through the capabilities, but hacks are for you know <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;Title=Get The List of all admins for a Blog on Wpmu' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;title=Get The List of all admins for a Blog on Wpmu' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;title=Get The List of all admins for a Blog on Wpmu' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Get The List of all admins for a Blog on Wpmu&amp;url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;title=Get The List of all admins for a Blog on Wpmu' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;title=Get The List of all admins for a Blog on Wpmu' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;bm_description=Get The List of all admins for a Blog on Wpmu' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;title=Get The List of all admins for a Blog on Wpmu' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;title=Get The List of all admins for a Blog on Wpmu' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;title=Get The List of all admins for a Blog on Wpmu' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;title=Get The List of all admins for a Blog on Wpmu' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Get The List of all admins for a Blog on Wpmu&amp;uri=http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (74.125.94.80) )</small> ccwp100xcfgdfghjkl764532sdfb<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=ZWVFBPk_SZE:8IRyeqrGN_U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=ZWVFBPk_SZE:8IRyeqrGN_U:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?i=ZWVFBPk_SZE:8IRyeqrGN_U:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThinkingInWordpress/~4/ZWVFBPk_SZE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.thinkinginwordpress.com/2010/02/get-the-list-of-all-admins-for-a-blog-on-wpmu/</feedburner:origLink></item>
		<item>
		<title>Updating the site</title>
		<link>http://feedproxy.google.com/~r/ThinkingInWordpress/~3/dQpaNGqduys/</link>
		<comments>http://www.thinkinginwordpress.com/2010/02/updating-the-site/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 10:49:57 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=316</guid>
		<description><![CDATA[Thank you everyone for your comments suggestions and everything. Recently, I have not been able to keep this blog updated, but from the mid of Feb, expect me to update it regularly. So my question to you all, which of the plugins you would like to see updated. Other than the plugins I will go [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F02%2Fupdating-the-site%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F02%2Fupdating-the-site%2F&amp;source=sbrajesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Thank you everyone for your comments suggestions and everything. Recently, I have not been able to keep this blog updated, but from the mid of Feb, expect me to update it regularly. </p>
<p>So my question to you all, which of the plugins you would like to see updated. Other than the plugins I will go into details of wp 3.0 and buddypress.<br />
Hope to see you guys here then <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks<br />
Brajesh</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;Title=Updating the site' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2010/02/updating-the-site/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;title=Updating the site' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;title=Updating the site' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Updating the site&amp;url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;title=Updating the site' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2010/02/updating-the-site/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;title=Updating the site' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;bm_description=Updating the site' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;title=Updating the site' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;title=Updating the site' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;title=Updating the site' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;title=Updating the site' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2010/02/updating-the-site/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Updating the site&amp;uri=http://www.thinkinginwordpress.com/2010/02/updating-the-site/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (74.125.94.80) )</small> ccwp100xcfgdfghjkl764532sdfb<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=dQpaNGqduys:tP-kZUyHuzM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=dQpaNGqduys:tP-kZUyHuzM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?i=dQpaNGqduys:tP-kZUyHuzM:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThinkingInWordpress/~4/dQpaNGqduys" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2010/02/updating-the-site/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.thinkinginwordpress.com/2010/02/updating-the-site/</feedburner:origLink></item>
		<item>
		<title>Now parse Client side json with WordPress</title>
		<link>http://feedproxy.google.com/~r/ThinkingInWordpress/~3/HNtt5VI_Nos/</link>
		<comments>http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 16:47:29 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[clien-side]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[json]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=309</guid>
		<description><![CDATA[If you are using wordpress 2.9+ , It is just so easy. You don&#8217;t have to worry about the evil thing called &#8220;eval&#8221; and you don&#8217;t have to worry about including JSON javascript parser with your theme/plugin. WordPress 2.9+ contains the json2.js from json.org. So, just put a line in your plugin wp_enqueue_script(&#34;json2&#34;);//must be put [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F01%2Fnow-parse-client-side-json-with-wordpress%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2010%2F01%2Fnow-parse-client-side-json-with-wordpress%2F&amp;source=sbrajesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>If you are using wordpress 2.9+ , It is just so easy. You don&#8217;t have to worry about the evil thing called &#8220;eval&#8221; and you don&#8217;t have to worry about including JSON javascript parser with your theme/plugin.</p>
<p>WordPress 2.9+ contains the <a title="json2.js" href="http://www.json.org/json2.js">json2.js</a> from json.org.</p>
<p>So, just put a line in your plugin</p>
<pre class="brush: php">

wp_enqueue_script(&quot;json2&quot;);//must be put inside some function called at wp_print_script
</pre>
<p>Or here is the complete code, how to enqueue the script.</p>
<pre class="brush: php">

add_action(&quot;wp_print_scripts&quot;,&quot;load_my_script&quot;);

function load_my_script(){

//en queue JSON2.js

wp_enqueue_script(&quot;json2&quot;);

}
</pre>
<p>and boy! wordpress will load the JSON parser, Now you are ready to use the JSON parser.</p>
<p>Here is more details about what you can do with the JSON parser</p>
<p><a title="Javascript JSON parser documentation " href="http://www.json.org/js.html">http://www.json.org/js.html</a></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;Title=Now parse Client side json with WordPress' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;title=Now parse Client side json with WordPress' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;title=Now parse Client side json with WordPress' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Now parse Client side json with WordPress&amp;url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;title=Now parse Client side json with WordPress' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;title=Now parse Client side json with WordPress' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;bm_description=Now parse Client side json with WordPress' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;title=Now parse Client side json with WordPress' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;title=Now parse Client side json with WordPress' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;title=Now parse Client side json with WordPress' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;title=Now parse Client side json with WordPress' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Now parse Client side json with WordPress&amp;uri=http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (74.125.94.80) )</small> ccwp100xcfgdfghjkl764532sdfb<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=HNtt5VI_Nos:VU6zmnvh1qw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=HNtt5VI_Nos:VU6zmnvh1qw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?i=HNtt5VI_Nos:VU6zmnvh1qw:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThinkingInWordpress/~4/HNtt5VI_Nos" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.thinkinginwordpress.com/2010/01/now-parse-client-side-json-with-wordpress/</feedburner:origLink></item>
		<item>
		<title>Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress</title>
		<link>http://feedproxy.google.com/~r/ThinkingInWordpress/~3/_ky9LbP4pWc/</link>
		<comments>http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 23:50:09 +0000</pubDate>
		<dc:creator>brajesh</dc:creator>
				<category><![CDATA[BuddyPress Themes]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[buddydev]]></category>
		<category><![CDATA[cosmic buddy]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.thinkinginwordpress.com/?p=300</guid>
		<description><![CDATA[We have just released the Cosmic buddy Theme for buddypress. Now you can turn your buddypress site to orkut style. Grab the free theme, and the addons from buddydev  here. http://buddydev.com/buddypress/cosmic-buddy-the-free-theme-to-turn-your-buddypres-to-orkut-style-site/ here is a screenshot. You can check the demo here : http://bpthemes.buddydev.com/comicbuddy/ It requires wpmu 2.8+ and bp 1.1.x or above. Hope you will [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2009%2F12%2Fturn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thinkinginwordpress.com%2F2009%2F12%2Fturn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress%2F&amp;source=sbrajesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>We have just released the Cosmic buddy Theme for buddypress.</p>
<p>Now you can turn your buddypress site to orkut style. Grab the free theme, and the addons from buddydev  here.</p>
<p><a href="http://buddydev.com/buddypress/cosmic-buddy-the-free-theme-to-turn-your-buddypres-to-orkut-style-site/">http://buddydev.com/buddypress/cosmic-buddy-the-free-theme-to-turn-your-buddypres-to-orkut-style-site/</a></p>
<p>here is a screenshot.</p>
<div class="wp-caption aligncenter" style="width: 196px"><a href="http://buddydev.com/buddypress/cosmic-buddy-the-free-theme-to-turn-your-buddypres-to-orkut-style-site/"><img title="Cosmic Buddy Theme" src="http://buddydev.com/files/2009/11/cosmicbuddy_theme2-186x300.png" alt="Cosmic buddy Theme" width="186" height="300" /></a><p class="wp-caption-text">Cosmic buddy Theme</p></div>
<p>You can check the demo here :<a href="http://bpthemes.buddydev.com/comicbuddy/"> http://bpthemes.buddydev.com/comicbuddy/</a></p>
<p>It requires wpmu 2.8+ and bp 1.1.x or above.</p>
<p>Hope you will enjoy this. <img src='http://www.thinkinginwordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;Title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Save to blinklist' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href='http://www.bloglines.com/sub/http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://del.icio.us/post?url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress&amp;url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;bm_description=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href='http://reddit.com/submit?url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://www.sphere.com/search?q=sphereit:http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Sphere It' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png' style='width:16px; height:16px;' alt='[Sphere] ' /></a> <a href='http://sphinn.com/submit.php?url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Sphinn' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png' style='width:16px; height:16px;' alt='[Sphinn] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;title=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Turn Your buddypress website to orkut style Site Now:Grab Cosmic buddy Theme for buddypress&amp;uri=http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div></div><hr /><small>Copyright &copy; 2008 <a href="http://www.ThinkingInWordpress.com">ThinkingInWordpress.com</a><br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> ccwp100xcfgdfghjkl764532sdfb (74.125.94.80) )</small> ccwp100xcfgdfghjkl764532sdfb<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=_ky9LbP4pWc:ZyZ1twc-Yn4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ThinkingInWordpress?a=_ky9LbP4pWc:ZyZ1twc-Yn4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ThinkingInWordpress?i=_ky9LbP4pWc:ZyZ1twc-Yn4:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ThinkingInWordpress/~4/_ky9LbP4pWc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.thinkinginwordpress.com/2009/12/turn-your-buddypress-website-to-orkut-style-site-nowgrab-cosmic-buddy-theme-for-buddypress/</feedburner:origLink></item>
	</channel>
</rss>
