<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>Asher Bond &#187; wordpress</title>
	<atom:link href="http://www.asherbond.com/blog/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.asherbond.com/blog</link>
	<description>I stay in SF, live in the Bay, represent cloud technology and the California way.</description>
	<lastBuildDate>Fri, 04 Jun 2010 23:48:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to Select Related Posts (by tags and category relevance) in WordPress</title>
		<link>http://www.asherbond.com/blog/2009/05/21/how-to-select-related-posts-by-tags-and-category-relevance-in-wordpress/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-select-related-posts-by-tags-and-category-relevance-in-wordpress</link>
		<comments>http://www.asherbond.com/blog/2009/05/21/how-to-select-related-posts-by-tags-and-category-relevance-in-wordpress/#comments</comments>
		<pubDate>Thu, 21 May 2009 16:00:44 +0000</pubDate>
		<dc:creator>Asher Bond</dc:creator>
				<category><![CDATA[databases]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[relevance queries]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[wordpress mu]]></category>

		<guid isPermaLink="false">http://www.asherbond.com/blog/?p=86</guid>
		<description><![CDATA[The first step is to get the post ID of the blog post you are viewing. You can get the id of a post by using $post->ID in WordPress. Let&#8217;s pretend it&#8217;s 3987. You will also need to know the term ids for categories and tags associated with this blog post Here is some PHP [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>The first step is to get the post ID of the blog post you are viewing. You can get the id of a post by using $post->ID in WordPress. Let&#8217;s pretend it&#8217;s 3987.</li>
<li>You will also need to know the term ids for categories and tags associated with this blog post</li>
</ol>
<p>Here is some PHP code you can use in wordpress to get the tags of your post ID.<br />
[source:css]<br />
 $tags = wp_get_post_tags( $post->ID );<br />
[/source]</p>
<p>Let&#8217;s assume the result is one category (264) and one tag (41).</p>
<ol>
<li>If you are not using WordPress Mu, you can simply select from wp_term_relationships and wp_posts</li>
<li>If you are using WordPress Mu, you will need to specify the tables as wp_MU-BLOG-ID#_term_relationships and wp_MU-BLOG-ID#_posts. Let&#8217;s assume we are using WordPress Mu and our blog ID is 1. The tables we are working with are wp_1_term_relationships and wp_1_posts</li>
</ol>
<p>[source:css]SELECT p.ID, COUNT(tr.object_id) AS cnt<br />
FROM wp_1_term_relationships AS tr, wp_1_posts AS p<br />
WHERE tr.object_id = p.id AND tr.term_taxonomy_id IN(264,41) AND p.id!=3987 AND p.post_status=&#8217;publish&#8217;<br />
GROUP BY tr.object_id ORDER BY cnt DESC, p.post_date_gmt DESC LIMIT 5;[/source]</p>
<p>Notice that we have limited our results to the 5 most relevant posts. It is recommended that you limit this query because it can be a difficult query to process if you are running it on a blog that has thousands of posts. You can change LIMIT 5 to LIMIT 25 or so on blogs that are hosting less than 5,000 posts without seeing much of a difference in performance. On larger, more frequently updated blogs or WordPress MU sites which are hosting a lot of blogs on the same server, it is recommended that you cache the results of this query and only use it once an hour or once every time a blog entry has been updated.</p>
Share and Enjoy:<a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F&amp;partner=sociable'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/printfriendly.png' class='sociable-img sociable-hovers ' title='Print' alt='Print' /></a><a rel='nofollow' target='_blank'  href='http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F&amp;title=How%20to%20Select%20Related%20Posts%20%28by%20tags%20and%20category%20relevance%29%20in%20Wordpress&amp;bodytext=%0D%0AThe%20first%20step%20is%20to%20get%20the%20post%20ID%20of%20the%20blog%20post%20you%20are%20viewing.%20You%20can%20get%20the%20id%20of%20a%20post%20by%20using%20%24post-%3EID%20in%20Wordpress.%20Let%27s%20pretend%20it%27s%203987.%0D%0AYou%20will%20also%20need%20to%20know%20the%20term%20ids%20for%20categories%20and%20tags%20associated%20with%20this%20blog'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/digg.png' class='sociable-img sociable-hovers ' title='Digg' alt='Digg' /></a><a rel='nofollow' target='_blank'  href='http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/sphinn.png' class='sociable-img sociable-hovers ' title='Sphinn' alt='Sphinn' /></a><a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F&amp;title=How%20to%20Select%20Related%20Posts%20%28by%20tags%20and%20category%20relevance%29%20in%20Wordpress&amp;notes=%0D%0AThe%20first%20step%20is%20to%20get%20the%20post%20ID%20of%20the%20blog%20post%20you%20are%20viewing.%20You%20can%20get%20the%20id%20of%20a%20post%20by%20using%20%24post-%3EID%20in%20Wordpress.%20Let%27s%20pretend%20it%27s%203987.%0D%0AYou%20will%20also%20need%20to%20know%20the%20term%20ids%20for%20categories%20and%20tags%20associated%20with%20this%20blog'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/delicious.png' class='sociable-img sociable-hovers ' title='del.icio.us' alt='del.icio.us' /></a><a rel='nofollow' target='_blank'  href='http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F&amp;t=How%20to%20Select%20Related%20Posts%20%28by%20tags%20and%20category%20relevance%29%20in%20Wordpress'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/facebook.png' class='sociable-img sociable-hovers ' title='Facebook' alt='Facebook' /></a><a rel='nofollow' target='_blank'  href='http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F&amp;title=How%20to%20Select%20Related%20Posts%20%28by%20tags%20and%20category%20relevance%29%20in%20Wordpress'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/mixx.png' class='sociable-img sociable-hovers ' title='Mixx' alt='Mixx' /></a><a rel='nofollow' target='_blank'  href='http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F&amp;title=How%20to%20Select%20Related%20Posts%20%28by%20tags%20and%20category%20relevance%29%20in%20Wordpress&amp;annotation=%0D%0AThe%20first%20step%20is%20to%20get%20the%20post%20ID%20of%20the%20blog%20post%20you%20are%20viewing.%20You%20can%20get%20the%20id%20of%20a%20post%20by%20using%20%24post-%3EID%20in%20Wordpress.%20Let%27s%20pretend%20it%27s%203987.%0D%0AYou%20will%20also%20need%20to%20know%20the%20term%20ids%20for%20categories%20and%20tags%20associated%20with%20this%20blog'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png' class='sociable-img sociable-hovers ' title='Google Bookmarks' alt='Google Bookmarks' /></a><a rel='nofollow' target='_blank'  href='http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F&amp;title=How%20to%20Select%20Related%20Posts%20%28by%20tags%20and%20category%20relevance%29%20in%20Wordpress&amp;source=Asher+Bond+I+stay+in+SF%2C+live+in+the+Bay%2C+represent+cloud+technology+and+the+California+way.&amp;summary=%0D%0AThe%20first%20step%20is%20to%20get%20the%20post%20ID%20of%20the%20blog%20post%20you%20are%20viewing.%20You%20can%20get%20the%20id%20of%20a%20post%20by%20using%20%24post-%3EID%20in%20Wordpress.%20Let%27s%20pretend%20it%27s%203987.%0D%0AYou%20will%20also%20need%20to%20know%20the%20term%20ids%20for%20categories%20and%20tags%20associated%20with%20this%20blog'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/linkedin.png' class='sociable-img sociable-hovers ' title='LinkedIn' alt='LinkedIn' /></a><a rel='nofollow' target='_blank'  href='http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F&amp;t=How%20to%20Select%20Related%20Posts%20%28by%20tags%20and%20category%20relevance%29%20in%20Wordpress'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/myspace.png' class='sociable-img sociable-hovers ' title='MySpace' alt='MySpace' /></a><a rel='nofollow' target='_blank'  href='http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F&amp;h=How%20to%20Select%20Related%20Posts%20%28by%20tags%20and%20category%20relevance%29%20in%20Wordpress'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/newsvine.png' class='sociable-img sociable-hovers ' title='NewsVine' alt='NewsVine' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F&amp;partner=sociable'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/pdf.png' class='sociable-img sociable-hovers ' title='PDF' alt='PDF' /></a><a rel='nofollow' target='_blank'  href='http://reddit.com/submit?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F&amp;title=How%20to%20Select%20Related%20Posts%20%28by%20tags%20and%20category%20relevance%29%20in%20Wordpress'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/reddit.png' class='sociable-img sociable-hovers ' title='Reddit' alt='Reddit' /></a><a rel='nofollow' target='_blank'  href='http://slashdot.org/bookmark.pl?title=How%20to%20Select%20Related%20Posts%20%28by%20tags%20and%20category%20relevance%29%20in%20Wordpress&amp;url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/slashdot.png' class='sociable-img sociable-hovers ' title='Slashdot' alt='Slashdot' /></a><a rel='nofollow' target='_blank'  href='http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F&amp;title=How%20to%20Select%20Related%20Posts%20%28by%20tags%20and%20category%20relevance%29%20in%20Wordpress'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png' class='sociable-img sociable-hovers ' title='StumbleUpon' alt='StumbleUpon' /></a><a rel='nofollow' target='_blank'  href='http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F%20How%20to%20Select%20Related%20Posts%20%28by%20tags%20and%20category%20relevance%29%20in%20Wordpress'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/techmeme.png' class='sociable-img sociable-hovers ' title='Suggest to Techmeme via Twitter' alt='Suggest to Techmeme via Twitter' /></a><a rel='nofollow' target='_blank'  href='http://technorati.com/faves?add=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/technorati.png' class='sociable-img sociable-hovers ' title='Technorati' alt='Technorati' /></a><a rel='nofollow' target='_blank'  href='http://twitter.com/home?status=How%20to%20Select%20Related%20Posts%20%28by%20tags%20and%20category%20relevance%29%20in%20Wordpress%20-%20http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/twitter.png' class='sociable-img sociable-hovers ' title='Twitter' alt='Twitter' /></a><a rel='nofollow' target='_blank'  href='http://www.ekudos.nl/artikel/nieuw?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F&amp;title=How%20to%20Select%20Related%20Posts%20%28by%20tags%20and%20category%20relevance%29%20in%20Wordpress&amp;desc=%0D%0AThe%20first%20step%20is%20to%20get%20the%20post%20ID%20of%20the%20blog%20post%20you%20are%20viewing.%20You%20can%20get%20the%20id%20of%20a%20post%20by%20using%20%24post-%3EID%20in%20Wordpress.%20Let%27s%20pretend%20it%27s%203987.%0D%0AYou%20will%20also%20need%20to%20know%20the%20term%20ids%20for%20categories%20and%20tags%20associated%20with%20this%20blog'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/ekudos.png' class='sociable-img sociable-hovers ' title='eKudos' alt='eKudos' /></a><a rel='nofollow' target='_blank'  href='http://www.friendfeed.com/share?title=How%20to%20Select%20Related%20Posts%20%28by%20tags%20and%20category%20relevance%29%20in%20Wordpress&amp;link=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/friendfeed.png' class='sociable-img sociable-hovers ' title='FriendFeed' alt='FriendFeed' /></a><a rel='nofollow' target='_blank'  href='http://www.google.com/reader/link?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F&amp;title=How%20to%20Select%20Related%20Posts%20%28by%20tags%20and%20category%20relevance%29%20in%20Wordpress&amp;srcURL=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F&amp;srcTitle=Asher+Bond+I+stay+in+SF%2C+live+in+the+Bay%2C+represent+cloud+technology+and+the+California+way.'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png' class='sociable-img sociable-hovers ' title='Google Buzz' alt='Google Buzz' /></a><a rel='nofollow' target='_blank'  href='http://www.asherbond.com/blog/feed/'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/rss.png' class='sociable-img sociable-hovers ' title='RSS' alt='RSS' /></a><a rel='nofollow' target='_blank'  href='http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2009%2F05%2F21%2Fhow-to-select-related-posts-by-tags-and-category-relevance-in-wordpress%2F&amp;t=How%20to%20Select%20Related%20Posts%20%28by%20tags%20and%20category%20relevance%29%20in%20Wordpress&amp;s=%0D%0AThe%20first%20step%20is%20to%20get%20the%20post%20ID%20of%20the%20blog%20post%20you%20are%20viewing.%20You%20can%20get%20the%20id%20of%20a%20post%20by%20using%20%24post-%3EID%20in%20Wordpress.%20Let%27s%20pretend%20it%27s%203987.%0D%0AYou%20will%20also%20need%20to%20know%20the%20term%20ids%20for%20categories%20and%20tags%20associated%20with%20this%20blog'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/tumblr.png' class='sociable-img sociable-hovers ' title='Tumblr' alt='Tumblr' /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.asherbond.com/blog/2009/05/21/how-to-select-related-posts-by-tags-and-category-relevance-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Mu Tips: How to Import and Export Large Blogs Without The Hassle of Splitting The Files Up</title>
		<link>http://www.asherbond.com/blog/2008/10/09/wordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=wordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up</link>
		<comments>http://www.asherbond.com/blog/2008/10/09/wordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 22:34:40 +0000</pubDate>
		<dc:creator>Asher Bond</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[importing and exporting wordpress blogs]]></category>
		<category><![CDATA[wordpress mu]]></category>

		<guid isPermaLink="false">http://www.asherbond.com/blog/?p=57</guid>
		<description><![CDATA[First, log in as a site administrator, then go to the blog you want to export from and choose manage -&#62; export, and save your xml file. Now log into the blog your importing to as a site administrator and choose manage -&#62; import -&#62; WordPress, and load up the xml file. You probably get [...]]]></description>
			<content:encoded><![CDATA[<p>First, log in as a site administrator, then go to the blog you want to export from and choose manage -&gt; export, and save your xml file.</p>
<p>Now log into the blog your importing to as a site administrator and choose manage -&gt; import -&gt; WordPress, and load up the xml file.</p>
<p>You probably get an error message like:</p>
<p><strong>The uploaded file exceeds the <code>upload_max_filesize</code> directive in <code>php.ini</code>.</strong></p>
<p>You <em>could </em>edit your php.ini, but I don&#8217;t recommend this because it&#8217;s the sledgehammer approach. You can probably use a little more finesse by simply editing your .htaccess file (assuming your web server allows .htaccess to override php.ini).</p>
<p>First try this.. edit:</p>
<p>/path/to/your_wordpress_mu_directory/.htaccess</p>
<p>Add these lines to the top (adjust the values how you need to):</p>
<p>[source:css]</p>
<p>php_value  upload_max_filesize  15M<br />
php_value  post_max_size  15M<br />
php_value  memory_limit  48M</p>
<p>[/source]</p>
<p>If you have over ~1000 posts, you may also need to (temporarily) increase the amount of time php scripts are allowed to run before the web server kills the process. Here&#8217;s how you can set the maximum execution time of a php script as well as the http request time to (600 seconds) 10 minutes. Thank you <a href="http://rosalynmetz.com/ideas/2009/01/09/import-wordpress-into-new-wordpress/" target="_blank" title="Rosalyn Metz' Systems Administration Blog">Rosalyn Metz</a>.</p>
<p>[source:css]<br />
php_value max_execution_time 600<br />
php_value max_input_time 600<br />
[/source]</p>
<p>Now try again. If you get the same problem, you will need to edit your php.ini or get your systems administrator / web hosting provider to do it for you. Some web server configurations don&#8217;t allow users to override php.ini with .htaccess.</p>
<p>If you are successful, you will probably get a different error:</p>
<p><strong>This file is too big. Files must be less than 1500 Kb in size.</strong></p>
<p>The good news is that this means you have already configured php to allow WordPress to import your large xml file, but you still need to configure WordPress Mu to allow this. When you install WordPress, MU&#8230; it creates a record for each blog setting a variable called &#8220;fileupload_maxk&#8221; to 1500. This is what is limiting you.</p>
<p>Here&#8217;s the SQL code you can use to fix it by changing the variable(s) for every mu blog to a higher number (in this case 15000 bytes, but you can change it to a higher or lower number.)</p>
<p>BE SURE TO PUT IN YOUR DATABASE NAME HERE:</p>
<p>[source:css]UPDATE `__your_wordpress_mu_database_name_here__`.`wp_sitemeta`<br />
SET `meta_value` = &#8217;15000&#8242;<br />
WHERE (`wp_sitemeta`.`meta_value` = 1500)<br />
AND (`wp_sitemeta`.`meta_key` like &#8220;fileupload_maxk&#8221;);[/source]</p>
<p>When you create new blogs, they will still default to 1500. If you want to change this also, you must edit two files:</p>
<p>/path/to/your_wordpress_mu_directory/wp-includes/wpmu-functions.php</p>
<p>and</p>
<p>/path/to/your_wordpress_mu_directory/wp-admin/includes/mu.php</p>
<p>Just change:</p>
<p>[source:css]get_site_option( &#8216;fileupload_maxk&#8217;, 1500 )[/source]</p>
<p>to</p>
<p>[source:css]get_site_option( &#8216;fileupload_maxk&#8217;, 15000 )[/source]</p>
<p>(&#8230;.. or some number of bytes you want instead of 15000.)</p>
<p>That&#8217;s it, you should be able to import wordpress blogs as large as you want now.</p>
Share and Enjoy:<a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F&amp;partner=sociable'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/printfriendly.png' class='sociable-img sociable-hovers ' title='Print' alt='Print' /></a><a rel='nofollow' target='_blank'  href='http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F&amp;title=WordPress%20Mu%20Tips%3A%20How%20to%20Import%20and%20Export%20Large%20Blogs%20Without%20The%20Hassle%20of%20Splitting%20The%20Files%20Up&amp;bodytext=First%2C%20log%20in%20as%20a%20site%20administrator%2C%20then%20go%20to%20the%20blog%20you%20want%20to%20export%20from%20and%20choose%20manage%20-%26gt%3B%20export%2C%20and%20save%20your%20xml%20file.%0D%0A%0D%0ANow%20log%20into%20the%20blog%20your%20importing%20to%20as%20a%20site%20administrator%20and%20choose%20manage%20-%26gt%3B%20import%20-%26gt%3B%20Wordpre'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/digg.png' class='sociable-img sociable-hovers ' title='Digg' alt='Digg' /></a><a rel='nofollow' target='_blank'  href='http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/sphinn.png' class='sociable-img sociable-hovers ' title='Sphinn' alt='Sphinn' /></a><a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F&amp;title=WordPress%20Mu%20Tips%3A%20How%20to%20Import%20and%20Export%20Large%20Blogs%20Without%20The%20Hassle%20of%20Splitting%20The%20Files%20Up&amp;notes=First%2C%20log%20in%20as%20a%20site%20administrator%2C%20then%20go%20to%20the%20blog%20you%20want%20to%20export%20from%20and%20choose%20manage%20-%26gt%3B%20export%2C%20and%20save%20your%20xml%20file.%0D%0A%0D%0ANow%20log%20into%20the%20blog%20your%20importing%20to%20as%20a%20site%20administrator%20and%20choose%20manage%20-%26gt%3B%20import%20-%26gt%3B%20Wordpre'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/delicious.png' class='sociable-img sociable-hovers ' title='del.icio.us' alt='del.icio.us' /></a><a rel='nofollow' target='_blank'  href='http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F&amp;t=WordPress%20Mu%20Tips%3A%20How%20to%20Import%20and%20Export%20Large%20Blogs%20Without%20The%20Hassle%20of%20Splitting%20The%20Files%20Up'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/facebook.png' class='sociable-img sociable-hovers ' title='Facebook' alt='Facebook' /></a><a rel='nofollow' target='_blank'  href='http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F&amp;title=WordPress%20Mu%20Tips%3A%20How%20to%20Import%20and%20Export%20Large%20Blogs%20Without%20The%20Hassle%20of%20Splitting%20The%20Files%20Up'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/mixx.png' class='sociable-img sociable-hovers ' title='Mixx' alt='Mixx' /></a><a rel='nofollow' target='_blank'  href='http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F&amp;title=WordPress%20Mu%20Tips%3A%20How%20to%20Import%20and%20Export%20Large%20Blogs%20Without%20The%20Hassle%20of%20Splitting%20The%20Files%20Up&amp;annotation=First%2C%20log%20in%20as%20a%20site%20administrator%2C%20then%20go%20to%20the%20blog%20you%20want%20to%20export%20from%20and%20choose%20manage%20-%26gt%3B%20export%2C%20and%20save%20your%20xml%20file.%0D%0A%0D%0ANow%20log%20into%20the%20blog%20your%20importing%20to%20as%20a%20site%20administrator%20and%20choose%20manage%20-%26gt%3B%20import%20-%26gt%3B%20Wordpre'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png' class='sociable-img sociable-hovers ' title='Google Bookmarks' alt='Google Bookmarks' /></a><a rel='nofollow' target='_blank'  href='http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F&amp;title=WordPress%20Mu%20Tips%3A%20How%20to%20Import%20and%20Export%20Large%20Blogs%20Without%20The%20Hassle%20of%20Splitting%20The%20Files%20Up&amp;source=Asher+Bond+I+stay+in+SF%2C+live+in+the+Bay%2C+represent+cloud+technology+and+the+California+way.&amp;summary=First%2C%20log%20in%20as%20a%20site%20administrator%2C%20then%20go%20to%20the%20blog%20you%20want%20to%20export%20from%20and%20choose%20manage%20-%26gt%3B%20export%2C%20and%20save%20your%20xml%20file.%0D%0A%0D%0ANow%20log%20into%20the%20blog%20your%20importing%20to%20as%20a%20site%20administrator%20and%20choose%20manage%20-%26gt%3B%20import%20-%26gt%3B%20Wordpre'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/linkedin.png' class='sociable-img sociable-hovers ' title='LinkedIn' alt='LinkedIn' /></a><a rel='nofollow' target='_blank'  href='http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F&amp;t=WordPress%20Mu%20Tips%3A%20How%20to%20Import%20and%20Export%20Large%20Blogs%20Without%20The%20Hassle%20of%20Splitting%20The%20Files%20Up'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/myspace.png' class='sociable-img sociable-hovers ' title='MySpace' alt='MySpace' /></a><a rel='nofollow' target='_blank'  href='http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F&amp;h=WordPress%20Mu%20Tips%3A%20How%20to%20Import%20and%20Export%20Large%20Blogs%20Without%20The%20Hassle%20of%20Splitting%20The%20Files%20Up'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/newsvine.png' class='sociable-img sociable-hovers ' title='NewsVine' alt='NewsVine' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F&amp;partner=sociable'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/pdf.png' class='sociable-img sociable-hovers ' title='PDF' alt='PDF' /></a><a rel='nofollow' target='_blank'  href='http://reddit.com/submit?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F&amp;title=WordPress%20Mu%20Tips%3A%20How%20to%20Import%20and%20Export%20Large%20Blogs%20Without%20The%20Hassle%20of%20Splitting%20The%20Files%20Up'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/reddit.png' class='sociable-img sociable-hovers ' title='Reddit' alt='Reddit' /></a><a rel='nofollow' target='_blank'  href='http://slashdot.org/bookmark.pl?title=WordPress%20Mu%20Tips%3A%20How%20to%20Import%20and%20Export%20Large%20Blogs%20Without%20The%20Hassle%20of%20Splitting%20The%20Files%20Up&amp;url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/slashdot.png' class='sociable-img sociable-hovers ' title='Slashdot' alt='Slashdot' /></a><a rel='nofollow' target='_blank'  href='http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F&amp;title=WordPress%20Mu%20Tips%3A%20How%20to%20Import%20and%20Export%20Large%20Blogs%20Without%20The%20Hassle%20of%20Splitting%20The%20Files%20Up'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png' class='sociable-img sociable-hovers ' title='StumbleUpon' alt='StumbleUpon' /></a><a rel='nofollow' target='_blank'  href='http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F%20WordPress%20Mu%20Tips%3A%20How%20to%20Import%20and%20Export%20Large%20Blogs%20Without%20The%20Hassle%20of%20Splitting%20The%20Files%20Up'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/techmeme.png' class='sociable-img sociable-hovers ' title='Suggest to Techmeme via Twitter' alt='Suggest to Techmeme via Twitter' /></a><a rel='nofollow' target='_blank'  href='http://technorati.com/faves?add=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/technorati.png' class='sociable-img sociable-hovers ' title='Technorati' alt='Technorati' /></a><a rel='nofollow' target='_blank'  href='http://twitter.com/home?status=WordPress%20Mu%20Tips%3A%20How%20to%20Import%20and%20Export%20Large%20Blogs%20Without%20The%20Hassle%20of%20Splitting%20The%20Files%20Up%20-%20http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/twitter.png' class='sociable-img sociable-hovers ' title='Twitter' alt='Twitter' /></a><a rel='nofollow' target='_blank'  href='http://www.ekudos.nl/artikel/nieuw?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F&amp;title=WordPress%20Mu%20Tips%3A%20How%20to%20Import%20and%20Export%20Large%20Blogs%20Without%20The%20Hassle%20of%20Splitting%20The%20Files%20Up&amp;desc=First%2C%20log%20in%20as%20a%20site%20administrator%2C%20then%20go%20to%20the%20blog%20you%20want%20to%20export%20from%20and%20choose%20manage%20-%26gt%3B%20export%2C%20and%20save%20your%20xml%20file.%0D%0A%0D%0ANow%20log%20into%20the%20blog%20your%20importing%20to%20as%20a%20site%20administrator%20and%20choose%20manage%20-%26gt%3B%20import%20-%26gt%3B%20Wordpre'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/ekudos.png' class='sociable-img sociable-hovers ' title='eKudos' alt='eKudos' /></a><a rel='nofollow' target='_blank'  href='http://www.friendfeed.com/share?title=WordPress%20Mu%20Tips%3A%20How%20to%20Import%20and%20Export%20Large%20Blogs%20Without%20The%20Hassle%20of%20Splitting%20The%20Files%20Up&amp;link=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/friendfeed.png' class='sociable-img sociable-hovers ' title='FriendFeed' alt='FriendFeed' /></a><a rel='nofollow' target='_blank'  href='http://www.google.com/reader/link?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F&amp;title=WordPress%20Mu%20Tips%3A%20How%20to%20Import%20and%20Export%20Large%20Blogs%20Without%20The%20Hassle%20of%20Splitting%20The%20Files%20Up&amp;srcURL=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F&amp;srcTitle=Asher+Bond+I+stay+in+SF%2C+live+in+the+Bay%2C+represent+cloud+technology+and+the+California+way.'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png' class='sociable-img sociable-hovers ' title='Google Buzz' alt='Google Buzz' /></a><a rel='nofollow' target='_blank'  href='http://www.asherbond.com/blog/feed/'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/rss.png' class='sociable-img sociable-hovers ' title='RSS' alt='RSS' /></a><a rel='nofollow' target='_blank'  href='http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F10%2F09%2Fwordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up%2F&amp;t=WordPress%20Mu%20Tips%3A%20How%20to%20Import%20and%20Export%20Large%20Blogs%20Without%20The%20Hassle%20of%20Splitting%20The%20Files%20Up&amp;s=First%2C%20log%20in%20as%20a%20site%20administrator%2C%20then%20go%20to%20the%20blog%20you%20want%20to%20export%20from%20and%20choose%20manage%20-%26gt%3B%20export%2C%20and%20save%20your%20xml%20file.%0D%0A%0D%0ANow%20log%20into%20the%20blog%20your%20importing%20to%20as%20a%20site%20administrator%20and%20choose%20manage%20-%26gt%3B%20import%20-%26gt%3B%20Wordpre'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/tumblr.png' class='sociable-img sociable-hovers ' title='Tumblr' alt='Tumblr' /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.asherbond.com/blog/2008/10/09/wordpress-mu-tips-how-to-import-and-export-large-files-without-the-hassle-of-splitting-them-up/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Addthis.com fully functional share dropdown menu code for WordPress</title>
		<link>http://www.asherbond.com/blog/2008/06/29/addthiscom-fully-functional-share-dropdown-menu-code-for-wordpress/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=addthiscom-fully-functional-share-dropdown-menu-code-for-wordpress</link>
		<comments>http://www.asherbond.com/blog/2008/06/29/addthiscom-fully-functional-share-dropdown-menu-code-for-wordpress/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 08:22:50 +0000</pubDate>
		<dc:creator>Asher Bond</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[addthis]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sharing]]></category>
		<category><![CDATA[viral marketing]]></category>

		<guid isPermaLink="false">http://www.asherbond.com/blog/?p=39</guid>
		<description><![CDATA[If you have addthis.com and you aren&#8217;t satisfied with the plain share button that&#8217;s available for WordPress, you can use this code to change it to the fully functional dropdown share menu. Just add this code to the end of your blog posts. You will most likely want to add it to the archive.php, index.php, [...]]]></description>
			<content:encoded><![CDATA[<p>If you have addthis.com and you aren&#8217;t satisfied with the plain share button that&#8217;s available for WordPress, you can use this code to change it to the fully functional dropdown share menu. Just add this code to the end of your blog posts. You will most likely want to add it to the archive.php, index.php, and single.php files in your theme directory ( /path/to/wordpress/site/wp-content/themes/sometheme/single.php etc.)</p>
<p>I just made one php file called addthis_button.php that had this code in it:</p>
<p>[source:php]&lt;?php<br />
// change this to your addthis user name<br />
$addthis_user=&#8217;asherbond&#8217;;<br />
?&gt;</p>
<p>&lt;!&#8211; AddThis Button BEGIN &#8211;&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;addthis_pub  = &#8216;&lt;?php print $addthis_user; ?&gt;&#8217;;&lt;/script&gt;<br />
&lt;a href=&#8221;http://www.addthis.com/bookmark.php?pub=&lt;?php print $addthis_user; ?&gt;&amp;url=&#8221;&lt;?php print get_permalink(); ?&gt;&#8221;&amp;title=&#8221;&lt;?php print get_the_title($id); ?&gt;&#8221;\&#8221;" onmouseover=&#8221;return addthis_open(this, &#8221;, &#8216;&lt;?php print get_permalink(); ?&gt;&#8217;, &#8216;&lt;?php print get_the_title($id); ?&gt;&#8217;)&#8221; onmouseout=&#8221;addthis_close()&#8221; onclick=&#8221;return addthis_sendto()&#8221;&gt;&lt;img src=&#8221;http://s9.addthis.com/button1-share.gif&#8221; width=&#8221;125&#8243; height=&#8221;16&#8243; border=&#8221;0&#8243; alt=&#8221;" /&gt;&lt;/a&gt;&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://s7.addthis.com/js/152/addthis_widget.js&#8221;&gt;&lt;/script&gt;<br />
&lt;!&#8211; AddThis Button END &#8211;&gt;<br />
[/source]</p>
<p>Then I added the code to include it in each of these files: single.php, index.php, and archive.php:</p>
<p>[source:php] &lt;?php include(&#8216;addthis_button.php&#8217;); ?&gt;[/source]</p>
Share and Enjoy:<a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F&amp;partner=sociable'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/printfriendly.png' class='sociable-img sociable-hovers ' title='Print' alt='Print' /></a><a rel='nofollow' target='_blank'  href='http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F&amp;title=Addthis.com%20fully%20functional%20share%20dropdown%20menu%20code%20for%20Wordpress&amp;bodytext=If%20you%20have%20addthis.com%20and%20you%20aren%27t%20satisfied%20with%20the%20plain%20share%20button%20that%27s%20available%20for%20Wordpress%2C%20you%20can%20use%20this%20code%20to%20change%20it%20to%20the%20fully%20functional%20dropdown%20share%20menu.%20Just%20add%20this%20code%20to%20the%20end%20of%20your%20blog%20posts.%20You%20will%20mo'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/digg.png' class='sociable-img sociable-hovers ' title='Digg' alt='Digg' /></a><a rel='nofollow' target='_blank'  href='http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/sphinn.png' class='sociable-img sociable-hovers ' title='Sphinn' alt='Sphinn' /></a><a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F&amp;title=Addthis.com%20fully%20functional%20share%20dropdown%20menu%20code%20for%20Wordpress&amp;notes=If%20you%20have%20addthis.com%20and%20you%20aren%27t%20satisfied%20with%20the%20plain%20share%20button%20that%27s%20available%20for%20Wordpress%2C%20you%20can%20use%20this%20code%20to%20change%20it%20to%20the%20fully%20functional%20dropdown%20share%20menu.%20Just%20add%20this%20code%20to%20the%20end%20of%20your%20blog%20posts.%20You%20will%20mo'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/delicious.png' class='sociable-img sociable-hovers ' title='del.icio.us' alt='del.icio.us' /></a><a rel='nofollow' target='_blank'  href='http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F&amp;t=Addthis.com%20fully%20functional%20share%20dropdown%20menu%20code%20for%20Wordpress'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/facebook.png' class='sociable-img sociable-hovers ' title='Facebook' alt='Facebook' /></a><a rel='nofollow' target='_blank'  href='http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F&amp;title=Addthis.com%20fully%20functional%20share%20dropdown%20menu%20code%20for%20Wordpress'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/mixx.png' class='sociable-img sociable-hovers ' title='Mixx' alt='Mixx' /></a><a rel='nofollow' target='_blank'  href='http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F&amp;title=Addthis.com%20fully%20functional%20share%20dropdown%20menu%20code%20for%20Wordpress&amp;annotation=If%20you%20have%20addthis.com%20and%20you%20aren%27t%20satisfied%20with%20the%20plain%20share%20button%20that%27s%20available%20for%20Wordpress%2C%20you%20can%20use%20this%20code%20to%20change%20it%20to%20the%20fully%20functional%20dropdown%20share%20menu.%20Just%20add%20this%20code%20to%20the%20end%20of%20your%20blog%20posts.%20You%20will%20mo'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png' class='sociable-img sociable-hovers ' title='Google Bookmarks' alt='Google Bookmarks' /></a><a rel='nofollow' target='_blank'  href='http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F&amp;title=Addthis.com%20fully%20functional%20share%20dropdown%20menu%20code%20for%20Wordpress&amp;source=Asher+Bond+I+stay+in+SF%2C+live+in+the+Bay%2C+represent+cloud+technology+and+the+California+way.&amp;summary=If%20you%20have%20addthis.com%20and%20you%20aren%27t%20satisfied%20with%20the%20plain%20share%20button%20that%27s%20available%20for%20Wordpress%2C%20you%20can%20use%20this%20code%20to%20change%20it%20to%20the%20fully%20functional%20dropdown%20share%20menu.%20Just%20add%20this%20code%20to%20the%20end%20of%20your%20blog%20posts.%20You%20will%20mo'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/linkedin.png' class='sociable-img sociable-hovers ' title='LinkedIn' alt='LinkedIn' /></a><a rel='nofollow' target='_blank'  href='http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F&amp;t=Addthis.com%20fully%20functional%20share%20dropdown%20menu%20code%20for%20Wordpress'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/myspace.png' class='sociable-img sociable-hovers ' title='MySpace' alt='MySpace' /></a><a rel='nofollow' target='_blank'  href='http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F&amp;h=Addthis.com%20fully%20functional%20share%20dropdown%20menu%20code%20for%20Wordpress'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/newsvine.png' class='sociable-img sociable-hovers ' title='NewsVine' alt='NewsVine' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F&amp;partner=sociable'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/pdf.png' class='sociable-img sociable-hovers ' title='PDF' alt='PDF' /></a><a rel='nofollow' target='_blank'  href='http://reddit.com/submit?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F&amp;title=Addthis.com%20fully%20functional%20share%20dropdown%20menu%20code%20for%20Wordpress'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/reddit.png' class='sociable-img sociable-hovers ' title='Reddit' alt='Reddit' /></a><a rel='nofollow' target='_blank'  href='http://slashdot.org/bookmark.pl?title=Addthis.com%20fully%20functional%20share%20dropdown%20menu%20code%20for%20Wordpress&amp;url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/slashdot.png' class='sociable-img sociable-hovers ' title='Slashdot' alt='Slashdot' /></a><a rel='nofollow' target='_blank'  href='http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F&amp;title=Addthis.com%20fully%20functional%20share%20dropdown%20menu%20code%20for%20Wordpress'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png' class='sociable-img sociable-hovers ' title='StumbleUpon' alt='StumbleUpon' /></a><a rel='nofollow' target='_blank'  href='http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F%20Addthis.com%20fully%20functional%20share%20dropdown%20menu%20code%20for%20Wordpress'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/techmeme.png' class='sociable-img sociable-hovers ' title='Suggest to Techmeme via Twitter' alt='Suggest to Techmeme via Twitter' /></a><a rel='nofollow' target='_blank'  href='http://technorati.com/faves?add=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/technorati.png' class='sociable-img sociable-hovers ' title='Technorati' alt='Technorati' /></a><a rel='nofollow' target='_blank'  href='http://twitter.com/home?status=Addthis.com%20fully%20functional%20share%20dropdown%20menu%20code%20for%20Wordpress%20-%20http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/twitter.png' class='sociable-img sociable-hovers ' title='Twitter' alt='Twitter' /></a><a rel='nofollow' target='_blank'  href='http://www.ekudos.nl/artikel/nieuw?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F&amp;title=Addthis.com%20fully%20functional%20share%20dropdown%20menu%20code%20for%20Wordpress&amp;desc=If%20you%20have%20addthis.com%20and%20you%20aren%27t%20satisfied%20with%20the%20plain%20share%20button%20that%27s%20available%20for%20Wordpress%2C%20you%20can%20use%20this%20code%20to%20change%20it%20to%20the%20fully%20functional%20dropdown%20share%20menu.%20Just%20add%20this%20code%20to%20the%20end%20of%20your%20blog%20posts.%20You%20will%20mo'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/ekudos.png' class='sociable-img sociable-hovers ' title='eKudos' alt='eKudos' /></a><a rel='nofollow' target='_blank'  href='http://www.friendfeed.com/share?title=Addthis.com%20fully%20functional%20share%20dropdown%20menu%20code%20for%20Wordpress&amp;link=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/friendfeed.png' class='sociable-img sociable-hovers ' title='FriendFeed' alt='FriendFeed' /></a><a rel='nofollow' target='_blank'  href='http://www.google.com/reader/link?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F&amp;title=Addthis.com%20fully%20functional%20share%20dropdown%20menu%20code%20for%20Wordpress&amp;srcURL=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F&amp;srcTitle=Asher+Bond+I+stay+in+SF%2C+live+in+the+Bay%2C+represent+cloud+technology+and+the+California+way.'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png' class='sociable-img sociable-hovers ' title='Google Buzz' alt='Google Buzz' /></a><a rel='nofollow' target='_blank'  href='http://www.asherbond.com/blog/feed/'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/rss.png' class='sociable-img sociable-hovers ' title='RSS' alt='RSS' /></a><a rel='nofollow' target='_blank'  href='http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F29%2Faddthiscom-fully-functional-share-dropdown-menu-code-for-wordpress%2F&amp;t=Addthis.com%20fully%20functional%20share%20dropdown%20menu%20code%20for%20Wordpress&amp;s=If%20you%20have%20addthis.com%20and%20you%20aren%27t%20satisfied%20with%20the%20plain%20share%20button%20that%27s%20available%20for%20Wordpress%2C%20you%20can%20use%20this%20code%20to%20change%20it%20to%20the%20fully%20functional%20dropdown%20share%20menu.%20Just%20add%20this%20code%20to%20the%20end%20of%20your%20blog%20posts.%20You%20will%20mo'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/tumblr.png' class='sociable-img sociable-hovers ' title='Tumblr' alt='Tumblr' /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.asherbond.com/blog/2008/06/29/addthiscom-fully-functional-share-dropdown-menu-code-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>(Mu Compatible) WordPress Plugins: Image Code Generator</title>
		<link>http://www.asherbond.com/blog/2008/06/02/mu-compatible-wordpress-plugins-image-code-generator/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=mu-compatible-wordpress-plugins-image-code-generator</link>
		<comments>http://www.asherbond.com/blog/2008/06/02/mu-compatible-wordpress-plugins-image-code-generator/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 10:35:01 +0000</pubDate>
		<dc:creator>Asher Bond</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[code generators]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[wordpress mu]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.asherbond.com/blog/?p=33</guid>
		<description><![CDATA[This plugin embeds an image in your blog and offers the code for others to copy so they can also easily post the same image on their site. The code also encloses your image in a hyperlink that links back to your blog post. Installation: First you must download and install Erik Range&#8217;s Syntax Highlighter [...]]]></description>
			<content:encoded><![CDATA[<p>This plugin embeds an image in your blog and offers the code for others to copy so they can also easily post the same image on their site. The code also encloses your image in a hyperlink that links back to your blog post.</p>
<p>Installation:</p>
<ol>
<li>First you must download and install <a href="http://erik.range-it.de/wordpress/plugins/syntaxhighlighter/" target="_blank">Erik Range&#8217;s Syntax Highlighter Plugin</a>.</li>
<li> Download and Unzip the Image Code Generator Plugin from <a href="http://www.asherbond.com/downloads/imgcode.zip">here</a>.</li>
<li><strong>Normal Installation:</strong> Upload the &#8220;imgcode&#8221; into your wp-content/plugins directory then just activate the plugin from your &#8220;Plugins&#8221; screen of wp-admin. (You&#8217;re Done!)</li>
<li><strong>ONLY If you are using WordPress Mu</strong> and you want to make this plugin available for ALL BLOGS that you are hosting: Upload the <strong>contents</strong> of &#8220;imgcode&#8221; (not the actual directory itself) into wp-content/mu-plugins. (You&#8217;re done!)</li>
</ol>
<p>To use the plugin, put code like this in your new blog posts:</p>
<p><img src="http://www.asherbond.com/blog/images/imgcode/imgcode01.png" alt="how to use imgcode plugin for wordpress" width="439" height="36" /></p>
<p>The plugin will automatically translate code like that into something that looks like this:<br />
[imgcode]http://a162.ac-images.myspacecdn.com/images01/24/l_53b0882d564215ad8726072ac7b3f8d9.jpg[/imgcode]</p>
<p>If you want to include descriptive information about your image (for search engine optimization) just describe your image using alt= like <a href="http://www.asherbond.com/blog/images/imgcode/imgcode02.png" target="_blank">this</a>.</p>
Share and Enjoy:<a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F&amp;partner=sociable'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/printfriendly.png' class='sociable-img sociable-hovers ' title='Print' alt='Print' /></a><a rel='nofollow' target='_blank'  href='http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F&amp;title=%28Mu%20Compatible%29%20Wordpress%20Plugins%3A%20Image%20Code%20Generator%20&amp;bodytext=This%20plugin%20embeds%20an%20image%20in%20your%20blog%20and%20offers%20the%20code%20for%20others%20to%20copy%20so%20they%20can%20also%20easily%20post%20the%20same%20image%20on%20their%20site.%20The%20code%20also%20encloses%20your%20image%20in%20a%20hyperlink%20that%20links%20back%20to%20your%20blog%20post.%0D%0A%0D%0AInstallation%3A%0D%0A%0D%0A%09First%20'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/digg.png' class='sociable-img sociable-hovers ' title='Digg' alt='Digg' /></a><a rel='nofollow' target='_blank'  href='http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/sphinn.png' class='sociable-img sociable-hovers ' title='Sphinn' alt='Sphinn' /></a><a rel='nofollow' target='_blank'  href='http://delicious.com/post?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F&amp;title=%28Mu%20Compatible%29%20Wordpress%20Plugins%3A%20Image%20Code%20Generator%20&amp;notes=This%20plugin%20embeds%20an%20image%20in%20your%20blog%20and%20offers%20the%20code%20for%20others%20to%20copy%20so%20they%20can%20also%20easily%20post%20the%20same%20image%20on%20their%20site.%20The%20code%20also%20encloses%20your%20image%20in%20a%20hyperlink%20that%20links%20back%20to%20your%20blog%20post.%0D%0A%0D%0AInstallation%3A%0D%0A%0D%0A%09First%20'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/delicious.png' class='sociable-img sociable-hovers ' title='del.icio.us' alt='del.icio.us' /></a><a rel='nofollow' target='_blank'  href='http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F&amp;t=%28Mu%20Compatible%29%20Wordpress%20Plugins%3A%20Image%20Code%20Generator%20'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/facebook.png' class='sociable-img sociable-hovers ' title='Facebook' alt='Facebook' /></a><a rel='nofollow' target='_blank'  href='http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F&amp;title=%28Mu%20Compatible%29%20Wordpress%20Plugins%3A%20Image%20Code%20Generator%20'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/mixx.png' class='sociable-img sociable-hovers ' title='Mixx' alt='Mixx' /></a><a rel='nofollow' target='_blank'  href='http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F&amp;title=%28Mu%20Compatible%29%20Wordpress%20Plugins%3A%20Image%20Code%20Generator%20&amp;annotation=This%20plugin%20embeds%20an%20image%20in%20your%20blog%20and%20offers%20the%20code%20for%20others%20to%20copy%20so%20they%20can%20also%20easily%20post%20the%20same%20image%20on%20their%20site.%20The%20code%20also%20encloses%20your%20image%20in%20a%20hyperlink%20that%20links%20back%20to%20your%20blog%20post.%0D%0A%0D%0AInstallation%3A%0D%0A%0D%0A%09First%20'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png' class='sociable-img sociable-hovers ' title='Google Bookmarks' alt='Google Bookmarks' /></a><a rel='nofollow' target='_blank'  href='http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F&amp;title=%28Mu%20Compatible%29%20Wordpress%20Plugins%3A%20Image%20Code%20Generator%20&amp;source=Asher+Bond+I+stay+in+SF%2C+live+in+the+Bay%2C+represent+cloud+technology+and+the+California+way.&amp;summary=This%20plugin%20embeds%20an%20image%20in%20your%20blog%20and%20offers%20the%20code%20for%20others%20to%20copy%20so%20they%20can%20also%20easily%20post%20the%20same%20image%20on%20their%20site.%20The%20code%20also%20encloses%20your%20image%20in%20a%20hyperlink%20that%20links%20back%20to%20your%20blog%20post.%0D%0A%0D%0AInstallation%3A%0D%0A%0D%0A%09First%20'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/linkedin.png' class='sociable-img sociable-hovers ' title='LinkedIn' alt='LinkedIn' /></a><a rel='nofollow' target='_blank'  href='http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F&amp;t=%28Mu%20Compatible%29%20Wordpress%20Plugins%3A%20Image%20Code%20Generator%20'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/myspace.png' class='sociable-img sociable-hovers ' title='MySpace' alt='MySpace' /></a><a rel='nofollow' target='_blank'  href='http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F&amp;h=%28Mu%20Compatible%29%20Wordpress%20Plugins%3A%20Image%20Code%20Generator%20'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/newsvine.png' class='sociable-img sociable-hovers ' title='NewsVine' alt='NewsVine' /></a><a rel='nofollow' target='_blank'  href='http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F&amp;partner=sociable'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/pdf.png' class='sociable-img sociable-hovers ' title='PDF' alt='PDF' /></a><a rel='nofollow' target='_blank'  href='http://reddit.com/submit?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F&amp;title=%28Mu%20Compatible%29%20Wordpress%20Plugins%3A%20Image%20Code%20Generator%20'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/reddit.png' class='sociable-img sociable-hovers ' title='Reddit' alt='Reddit' /></a><a rel='nofollow' target='_blank'  href='http://slashdot.org/bookmark.pl?title=%28Mu%20Compatible%29%20Wordpress%20Plugins%3A%20Image%20Code%20Generator%20&amp;url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/slashdot.png' class='sociable-img sociable-hovers ' title='Slashdot' alt='Slashdot' /></a><a rel='nofollow' target='_blank'  href='http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F&amp;title=%28Mu%20Compatible%29%20Wordpress%20Plugins%3A%20Image%20Code%20Generator%20'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png' class='sociable-img sociable-hovers ' title='StumbleUpon' alt='StumbleUpon' /></a><a rel='nofollow' target='_blank'  href='http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F%20%28Mu%20Compatible%29%20Wordpress%20Plugins%3A%20Image%20Code%20Generator%20'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/techmeme.png' class='sociable-img sociable-hovers ' title='Suggest to Techmeme via Twitter' alt='Suggest to Techmeme via Twitter' /></a><a rel='nofollow' target='_blank'  href='http://technorati.com/faves?add=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/technorati.png' class='sociable-img sociable-hovers ' title='Technorati' alt='Technorati' /></a><a rel='nofollow' target='_blank'  href='http://twitter.com/home?status=%28Mu%20Compatible%29%20Wordpress%20Plugins%3A%20Image%20Code%20Generator%20%20-%20http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/twitter.png' class='sociable-img sociable-hovers ' title='Twitter' alt='Twitter' /></a><a rel='nofollow' target='_blank'  href='http://www.ekudos.nl/artikel/nieuw?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F&amp;title=%28Mu%20Compatible%29%20Wordpress%20Plugins%3A%20Image%20Code%20Generator%20&amp;desc=This%20plugin%20embeds%20an%20image%20in%20your%20blog%20and%20offers%20the%20code%20for%20others%20to%20copy%20so%20they%20can%20also%20easily%20post%20the%20same%20image%20on%20their%20site.%20The%20code%20also%20encloses%20your%20image%20in%20a%20hyperlink%20that%20links%20back%20to%20your%20blog%20post.%0D%0A%0D%0AInstallation%3A%0D%0A%0D%0A%09First%20'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/ekudos.png' class='sociable-img sociable-hovers ' title='eKudos' alt='eKudos' /></a><a rel='nofollow' target='_blank'  href='http://www.friendfeed.com/share?title=%28Mu%20Compatible%29%20Wordpress%20Plugins%3A%20Image%20Code%20Generator%20&amp;link=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/friendfeed.png' class='sociable-img sociable-hovers ' title='FriendFeed' alt='FriendFeed' /></a><a rel='nofollow' target='_blank'  href='http://www.google.com/reader/link?url=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F&amp;title=%28Mu%20Compatible%29%20Wordpress%20Plugins%3A%20Image%20Code%20Generator%20&amp;srcURL=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F&amp;srcTitle=Asher+Bond+I+stay+in+SF%2C+live+in+the+Bay%2C+represent+cloud+technology+and+the+California+way.'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png' class='sociable-img sociable-hovers ' title='Google Buzz' alt='Google Buzz' /></a><a rel='nofollow' target='_blank'  href='http://www.asherbond.com/blog/feed/'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/rss.png' class='sociable-img sociable-hovers ' title='RSS' alt='RSS' /></a><a rel='nofollow' target='_blank'  href='http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.asherbond.com%2Fblog%2F2008%2F06%2F02%2Fmu-compatible-wordpress-plugins-image-code-generator%2F&amp;t=%28Mu%20Compatible%29%20Wordpress%20Plugins%3A%20Image%20Code%20Generator%20&amp;s=This%20plugin%20embeds%20an%20image%20in%20your%20blog%20and%20offers%20the%20code%20for%20others%20to%20copy%20so%20they%20can%20also%20easily%20post%20the%20same%20image%20on%20their%20site.%20The%20code%20also%20encloses%20your%20image%20in%20a%20hyperlink%20that%20links%20back%20to%20your%20blog%20post.%0D%0A%0D%0AInstallation%3A%0D%0A%0D%0A%09First%20'><img src='http://www.asherbond.com/blog/wp-content/plugins/sociable-30/images/default/16/tumblr.png' class='sociable-img sociable-hovers ' title='Tumblr' alt='Tumblr' /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.asherbond.com/blog/2008/06/02/mu-compatible-wordpress-plugins-image-code-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
