<?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>Play Like a Girl &#187; blogging</title>
	<atom:link href="http://lorinator.feminoise.com/category/blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://lorinator.feminoise.com</link>
	<description></description>
	<lastBuildDate>Tue, 02 Mar 2010 15:56:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>New job &#8211; new blog</title>
		<link>http://lorinator.feminoise.com/new-job-new-blog/</link>
		<comments>http://lorinator.feminoise.com/new-job-new-blog/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 16:58:28 +0000</pubDate>
		<dc:creator>Lorinator</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[site admin]]></category>

		<guid isPermaLink="false">http://lorinator.feminoise.com/new-job-new-blog/</guid>
		<description><![CDATA[I&#8217;ll be blogging about my new job as Arjen&#8217;s PM in a different location, because it doesn&#8217;t seem right to do that here. You can find it at www.ayreon.com/blog. So if you are curious about what managing a tortured musical genius mastermind   entails, now you know where to find out! 
I&#8217;ve not finalized [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll be blogging about my new job as Arjen&#8217;s PM in a different location, because it doesn&#8217;t seem right to do that here. You can find it at <a href="http://www.ayreon.com/blog">www.ayreon.com/blog</a>. So if you are curious about what managing a tortured musical genius mastermind <img src='http://lorinator.feminoise.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  entails, now you know where to find out! </p>
<p>I&#8217;ve not finalized the design yet, because I&#8217;ve had to set it up in a few spare minutes here and there while on the road for the Promo tour. It will be prettier later.  <img src='http://lorinator.feminoise.com/wp-includes/images/smilies/icon_bunny.gif' alt=':bunny:' class='wp-smiley' />  </p>
<img src="http://lorinator.feminoise.com/?ak_action=api_record_view&id=211&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://lorinator.feminoise.com/new-job-new-blog/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Author comment styling for Brian&#8217;s threaded comments</title>
		<link>http://lorinator.feminoise.com/author-comment-styling-for-brians-threaded-comments/</link>
		<comments>http://lorinator.feminoise.com/author-comment-styling-for-brians-threaded-comments/#comments</comments>
		<pubDate>Tue, 17 Jul 2007 03:38:13 +0000</pubDate>
		<dc:creator>Lorinator</dc:creator>
				<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://lorinator.feminoise.com/author-comment-styling-for-brians-threaded-comments/</guid>
		<description><![CDATA[How to add author comment styling to the Brian's threaded comments plugin for Wordpress]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://meidell.dk/archives/2006/12/19/brians-threaded-comments-159/">Brian&#8217;s threaded comments</a> plugin for Wordpress rocks because it makes it easier to keep track who&#8217;s saying what to whom in the comments section. This is useful if your blog has a <a href="http://www.johnchow.com/why-i-allow-comments-on-my-blog/">very active comment section</a>. The only bummer is that it provides no option to highlight the blog author&#8217;s own comments. With some help I&#8217;ve found a workaround so you can easily <strong>add author highlighting to Brian&#8217;s threaded comments</strong>.<br />
<strong><br />
<img class="right" src="http://lorinator.feminoise.com/img/pimp.jpg" alt="pimp your comments" />Instructions</strong></p>
<p>You need to edit two files:</p>
<ol>
<li>
the <strong>comments.php</strong> that comes with the Brian&#8217;s threaded comments plugin (it&#8217;s the one you use instead of your theme&#8217;s <strong>comments.php</strong>), and</li>
<li><strong>briansthreadedcomments.php</strong></li>
</ol>
<p>First decide what to call your author highlighting class. I&#8217;ll use <strong>authorcomment</strong> in the example.</p>
<p>Open <strong>briansthreadedcomments.php</strong> in a text editor and add your special class definition <strong>after </strong>the last <strong>.comment </strong>definition (around line 338). For example;</p>
<p><code>.authorcomment {border:1px solid #FFCCFF; background: #fff url('path_to/pimp_my_comments.jpg') top right no-repeat;}</code></p>
<p>Then in <strong>comments.php</strong>, you need to add a snippet of code:</p>
<p>Scroll down to about line 53, find this part:<br />
<code> &lt;div  id=&quot;div-comment-&lt;?php echo $c-&gt;comment_ID ?&gt;&quot; class='comment&lt;?php echo $odd?&gt;'&gt;</code></p>
<p>Add the new part in red:<br />
<code>&lt;div  id=&quot;div-comment-&lt;?php echo $c-&gt;comment_ID ?&gt;&quot; class='comment&lt;?php echo $odd?&gt;<span style="color:red">&lt;?php if($c-&gt;user_id == 'your user id') echo ' authorcomment';?&gt;</span>&quot;&gt;<br />
</code></p>
<p><strong>Replace &#8216;your user id&#8217; with your actual Wordpress user id number.</strong> </p>
<p>Also note that there must be a <strong>space </strong>between the single quote <br />and the class name: &#8216; authorcomment&#8217; .</p>
<p>Then upload the two files and you should be done. You can see this hack in action in the comments below.</p>
<p>If you&#8217;re using Brian&#8217;s threaded comments, I hope you&#8217;ll find this useful <img src='http://lorinator.feminoise.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks to my brother and my boyfriend (two different people, duh!) who helped me with this.</p>
<img src="http://lorinator.feminoise.com/?ak_action=api_record_view&id=132&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://lorinator.feminoise.com/author-comment-styling-for-brians-threaded-comments/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Eight random facts about LL</title>
		<link>http://lorinator.feminoise.com/eight-random-facts-about-ll/</link>
		<comments>http://lorinator.feminoise.com/eight-random-facts-about-ll/#comments</comments>
		<pubDate>Sun, 15 Jul 2007 14:28:40 +0000</pubDate>
		<dc:creator>Lorinator</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[random silliness]]></category>

		<guid isPermaLink="false">http://lorinator.feminoise.com/eight-random-facts-about-ll/</guid>
		<description><![CDATA[This post is in response to my being tagged for the &#8220;8 random facts about me&#8221; meme by Matt at Electric Guitar Review  and Cary at Guitar-stuff.net. For those not familiar with blogger culture, a blog meme is just a particular topic or question that is passed along from blog to blog. That way [...]]]></description>
			<content:encoded><![CDATA[<p>This post is in response to my being tagged for the &#8220;8 random facts about me&#8221; meme by Matt at <a href="http://www.guitar-stuff.net/2007/07/14/my-turn-eight-random-facts-about-matt-van-stone/">Electric Guitar Review</a>  and Cary at <a href="http://www.electric-guitar-review.com/2007/07/11/random-acts-of-blandness-eight-random-things-about-cary/">Guitar-stuff.net</a>. For those not familiar with blogger culture, a blog meme is just a particular topic or question that is passed along from blog to blog. That way the blogging community ends up having one big mutha conversation about the same topic.</p>
<p>The point of this particular meme is to divulge <strong>eight random facts about yourself</strong>, then &#8220;tag&#8221; eight other bloggers to do the same. You tag them by linking to them, which sends an automatic notification link that they can see in their blog&#8217;s admin panel. </p>
<p>So without further ado, here are eight random facts about me (betcha can&#8217;t wait):</p>
<ol>
<li>
If a task is more than moderately interesting, I&#8217;d rather learn how to it myself than have someone do it for me.</li>
<li>
Because of no. 1, I know how to build bicycle wheels from scratch.</li>
<li>
Because of no. 1, I haven&#8217;t been bored since I was nine years old. </li>
<li>
I can&#8217;t stand hot, humid weather&#8230;</li>
<li>
&#8230;or cold, clammy socks.</li>
<li>
I&#8217;d move anywhere in the world if Google offered me a job &#8212; even a job as cleaning lady.</li>
<li>
I sometimes dream that I&#8217;m best friends with Madonna, and that we get up to all kinds of zany antics together. It&#8217;s always a disappointment to wake up.</li>
<li>
My first crush was at the age of 6, on the cartoon character <em>Speed Racer</em>. Nowadays I&#8217;d be more likely to fall for the mysterious <em>Racer X</em>.</li>
</ol>
<p><a href="http://surrealm.net/">Surrealm</a>,<br />
<a href="http://www.elstanje.com/blogs/intGod/">Intgod</a>,<br />
<a href="http://www.stratoblogster.com/">Stratoblogster</a>,<br />
<a href="http://www.myspace.com/mrjoesguitar">Mr.Joe</a>, and<br />
<a href="http://www.brianmay.com/brian/brianssb/brianssb.html">Brian May</a> (heck, why not?) &#8212; consider yourself tagged!</p>
<p>Unfortunately, I don&#8217;t know 3 other blogging musicians to tag. So if you want me to tag you, lemme know!</p>
<img src="http://lorinator.feminoise.com/?ak_action=api_record_view&id=131&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://lorinator.feminoise.com/eight-random-facts-about-ll/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Feed icons for blogging guitarists</title>
		<link>http://lorinator.feminoise.com/feed-icons-for-blogging-guitarists/</link>
		<comments>http://lorinator.feminoise.com/feed-icons-for-blogging-guitarists/#comments</comments>
		<pubDate>Sun, 15 Jul 2007 02:29:23 +0000</pubDate>
		<dc:creator>Lorinator</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Guitar stuff]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[random silliness]]></category>

		<guid isPermaLink="false">http://lorinator.feminoise.com/feed-icons-for-blogging-guitarists/</guid>
		<description><![CDATA[Guitar pick shaped feed icons for blogging guitarists. PSD and PNG files.]]></description>
			<content:encoded><![CDATA[<p><img src="/img/pick_feed_icons.jpg" alt="feed icons for blogging guitarists" class="border left" />Feed icons have become so standard now that I think you can play around with them a bit without confusing people. </p>
<p>I&#8217;m so pleased with my pink guitar pick RSS icon that I thought I&#8217;d share it the source files with you. Resize and color to your preference (although you&#8217;ll get extra points for pink)! </p>
<p>Get the <a href="http://lorinator.feminoise.com/downloads/pick_feed_icon.psd">PSD</a> file or the <a href="http://lorinator.feminoise.com/downloads/pick_feed_icon.png">PNG</a>.</p>
<img src="http://lorinator.feminoise.com/?ak_action=api_record_view&id=130&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://lorinator.feminoise.com/feed-icons-for-blogging-guitarists/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Simple steps to a faster Wordpress Dashboard</title>
		<link>http://lorinator.feminoise.com/simple-steps-to-a-faster-wordpress-dashboard/</link>
		<comments>http://lorinator.feminoise.com/simple-steps-to-a-faster-wordpress-dashboard/#comments</comments>
		<pubDate>Fri, 06 Oct 2006 10:07:24 +0000</pubDate>
		<dc:creator>Lorinator</dc:creator>
				<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://lorinator.feminoise.com/simple-steps-to-a-faster-wordpress-dashboard/</guid>
		<description><![CDATA[How to remove The Wordpress Development Blog and Other Wordpress News feeds from your Wordpress dashboard

July 2007 UPDATE: In newer versions of Wordpress, e.g. 2.2, this is really easy now.
In your wp-admin directory, you need to edit the index.php file. Just comment out or delete the following lines:
&#60;div id=&#8221;devnews&#8221;&#62;&#60;/div&#62;
&#60;div id=&#8221;planetnews&#8221;&#62;&#60;/div&#62;
And your done!

Tired of all that [...]]]></description>
			<content:encoded><![CDATA[<h2>How to remove The <em>Wordpress Development Blog</em> and <em>Other Wordpress News</em> feeds from your Wordpress dashboard</h2>
<div class="update">
July 2007 UPDATE: In newer versions of Wordpress, e.g. 2.2, this is really easy now.<br />
In your <strong>wp-admin</strong> directory, you need to edit the <strong>index.php</strong> file. Just comment out or delete the following lines:</p>
<p>&lt;div id=&#8221;devnews&#8221;&gt;&lt;/div&gt;</p>
<p>&lt;div id=&#8221;planetnews&#8221;&gt;&lt;/div&gt;</p>
<p>And your done!
</p></div>
<p>Tired of all that default news stuff that makes the default Wordpress Dashboard so slow to load? I sure was &mdash; it was taking 3 to 6 seconds for my Dashboard to load because of all the feeds. By removing the &#8220;Other News&#8221; and  &#8220;Wordpress Development Blog,&#8221; feeds, my Dashboard now loads in between 0.13 and 0.20 seconds, and I&#8217;m a happy camper.</p>
<p>Part 1 shows you how to get rid of ALL the resource-hogging newsy stuff. Part 2 shows you how to keep just the Wordpress Development Blog&#8217;s most recent post (in case you want to do that).</p>
<p>[Note: I use Wordpress 2.0.4. Haven't tried other versions. This tested fine in Firefox 1.5.0.7 and IE 6; Validates as XHTML 1.0 Transitional. Been using it myself for a week or so, no problems encountered whatsoever.]</p>
<p><strong>Instructions &#8211; Part 1</strong><br />
You have to edit one of Wordpress&#8217;s core files here, but it&#8217;s a really simple edit. As long as you know how to edit a file in a text editor and upload it to your server, you can do it. All you have to do is comment out some of the code in the <code>index.php</code> file that resides in your <code>wp-admin</code> folder. </p>
<p>1) Go to your <code>wp-admin</code> folder and open <code>index.php</code> in your favorite text editor (Note: it&#8217;s always prudent to save a backup copy first!).</p>
<p>2) Scroll down to the following section of code, and &#8220;comment out&#8221; the entire block of html and, as suggested by <a href="http://intgod.blogspot.com/">Intgod</a>, the php (the comment code you should add is in red):</p>
<p><code><br />
<span style="color:red; font-weight:bold">&lt;!&#45;&#45;</span>&lt;p&gt;&lt;?php <span style="color:red; font-weight:bold">/*</span>_e(&quot;Below is the latest news from the official WordPress development blog, click on a title to read the full entry. If you need help with WordPress please see our &lt;a href=&#039;http://codex.wordpress.org/&#039;&gt;great documentation&lt;/a&gt; or if that doesn&#039;t help visit the &lt;a href=&#039;http://wordpress.org/support/&#039;&gt;support forums&lt;/a&gt;.&quot;); ?&gt;&lt;/p&gt;<br />
&lt;?php<br />
$rss = @fetch_rss(&#039;http://wordpress.org/development/feed/&#039;);<br />
if ( isset($rss-&gt;items) &amp;&amp; 0 != count($rss-&gt;items) ) {<br />
?&gt;<br />
&lt;h3&gt;&lt;?php _e(&#039;WordPress Development Blog&#039;); ?&gt;&lt;/h3&gt;<br />
&lt;?php<br />
$rss-&gt;items = array_slice($rss-&gt;items, 0, 3);<br />
foreach ($rss-&gt;items as $item ) {<br />
?&gt;<br />
&lt;h4&gt;&lt;a href=&#039;&lt;?php echo wp_filter_kses($item[&#039;link&#039;]); ?&gt;&#039;&gt;&lt;?php echo wp_specialchars($item[&#039;title&#039;]); ?&gt;&lt;/a&gt; &amp;#8212; &lt;?php printf(__(&#039;%s ago&#039;), human_time_diff(strtotime($item[&#039;pubdate&#039;], time() ) ) ); ?&gt;&lt;/h4&gt;<br />
&lt;p&gt;&lt;?php echo $item[&#039;description&#039;]; ?&gt;&lt;/p&gt;<br />
&lt;?php<br />
}<br />
}<br />
?&gt;<br />
&lt;?php<br />
$rss = @fetch_rss(&#039;http://planet.wordpress.org/feed/&#039;);<br />
if ( isset($rss-&gt;items) &amp;&amp; 0 != count($rss-&gt;items) ) {<br />
?&gt;<br />
&lt;div id=&quot;planetnews&quot;&gt;<br />
&lt;h3&gt;&lt;?php _e(&#039;Other WordPress News&#039;); ?&gt; &lt;a href=&quot;http://planet.wordpress.org/&quot;&gt;&lt;?php _e(&#039;more&#039;); ?&gt; &amp;raquo;&lt;/a&gt;&lt;/h3&gt;<br />
&lt;ul&gt;<br />
&lt;?php<br />
$rss-&gt;items = array_slice($rss-&gt;items, 0, 20);<br />
foreach ($rss-&gt;items as $item ) {<br />
?&gt;<br />
&lt;li&gt;&lt;a href=&#039;&lt;?php echo wp_filter_kses($item[&#039;link&#039;]); ?&gt;&#039;&gt;&lt;?php echo wp_specialchars($item[&#039;title&#039;]); ?&gt;&lt;/a&gt;&lt;/li&gt;<br />
&lt;?php<br />
}<br />
?&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt; ?php<br />
}<br />
<span style="color:red; font-weight:bold">*/</span>?&gt;<span style="color:red; font-weight:bold">&#45;&#45;&gt;</span><br />
</code></p>
<p>3. Don&#8217;t mess with any of the other code. Leave it as it is. Save this new version of <code>index.php</code> to your <code>wp-admin</code> folder on your server, overwriting the old copy (you did save a backup of the original, right?).</p>
<p>4. Log into your Dashboard and enjoy the new clean look and &uuml;ber-fast loading time.</p>
<h3>Ditch the &#8220;Other news,&#8221; but keep the most recent post in the &#8220;Wordpress Development Blog&#8221;.</h3>
<p>If you want to keep the Wordpress Development Blog active but limit it to showing you only the first post (say, to stay abreast of any important developments) here is how you do it. </p>
<p><strong>Instructions &#8211; part 2</strong></p>
<p>You need to modify the same block of code as in part 1 above (don&#8217;t mess with any of the other stuff), but with two important changes:</p>
<p>1. Change the 3 to a 1 in the line below:</p>
<p><code><br />
$rss-&gt;items = array_slice($rss-&gt;items, 0, 3); <span style="color:red; font-weight:bold">&lt;&#45;&#45;&#45; change this 3 to a 1</span></code></p>
<p>2. Leave the Wordpress Development Blog section intact and just comment out the &#8220;other news&#8221; code block instead. </p>
<p>Your final code should look like this (the edits are in red):</p>
<p><code><br />
&lt;p&gt;&lt;?php _e(&quot;Below is the latest news from the official WordPress development blog, click on a title to read the full entry. If you need help with WordPress please see our &lt;a href=&#039;http://codex.wordpress.org/&#039;&gt;great documentation&lt;/a&gt; or if that doesn&#039;t help visit the &lt;a href=&#039;http://wordpress.org/support/&#039;&gt;support forums&lt;/a&gt;.&quot;); ?&gt;&lt;/p&gt;<br />
&lt;?php<br />
$rss = @fetch_rss(&#039;http://wordpress.org/development/feed/&#039;);<br />
if ( isset($rss-&gt;items) &amp;&amp; 0 != count($rss-&gt;items) ) {<br />
?&gt;<br />
&lt;h3&gt;&lt;?php _e(&#039;WordPress Development Blog&#039;); ?&gt;&lt;/h3&gt;<br />
&lt;?php<br />
$rss-&gt;items = array_slice($rss-&gt;items, 0, <span style="color:red; font-weight:bold">1</span> );<br />
foreach ($rss-&gt;items as $item ) {<br />
?&gt;<br />
&lt;h4&gt;&lt;a href=&#039;&lt;?php echo wp_filter_kses($item[&#039;link&#039;]); ?&gt;&#039;&gt;&lt;?php echo wp_specialchars($item[&#039;title&#039;]); ?&gt;&lt;/a&gt; &amp;#8212; &lt;?php printf(__(&#039;%s ago&#039;), human_time_diff(strtotime($item[&#039;pubdate&#039;], time() ) ) ); ?&gt;&lt;/h4&gt;<br />
&lt;p&gt;&lt;?php echo $item[&#039;description&#039;]; ?&gt;&lt;/p&gt;<br />
&lt;?php<br />
}<br />
}<br />
?&gt;<br />
&lt;?php <span style="color:red; font-weight:bold">/*</span><br />
$rss = @fetch_rss(&#039;http://planet.wordpress.org/feed/&#039;);<br />
if ( isset($rss-&gt;items) &amp;&amp; 0 != count($rss-&gt;items) ) {<br />
?&gt;<br />
&lt;div id=&quot;planetnews&quot;&gt;<br />
&lt;h3&gt;&lt;?php _e(&#039;Other WordPress News&#039;); ?&gt; &lt;a href=&quot;http://planet.wordpress.org/&quot;&gt;&lt;?php _e(&#039;more&#039;); ?&gt; &amp;raquo;&lt;/a&gt;&lt;/h3&gt;<br />
&lt;ul&gt;<br />
&lt;?php<br />
$rss-&gt;items = array_slice($rss-&gt;items, 0, 20);<br />
foreach ($rss-&gt;items as $item ) {<br />
?&gt;<br />
&lt;li&gt;&lt;a href=&#039;&lt;?php echo wp_filter_kses($item[&#039;link&#039;]); ?&gt;&#039;&gt;&lt;?php echo wp_specialchars($item[&#039;title&#039;]); ?&gt;&lt;/a&gt;&lt;/li&gt;<br />
&lt;?php<br />
}<br />
?&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt;?php<br />
}<br />
<span style="color:red; font-weight:bold">*/</span>?&gt;</code></p>
<p>There you have it! I hope it works for you as well as it&#8217;s worked for me. BTW, instead of commenting stuff out, you could probably just delete it. But if you&#8217;re feeling squeamish about editing Wordpress core files, it&#8217;s probably nice to know that you can easily restore things to normal by deleting the comments.</p>
<img src="http://lorinator.feminoise.com/?ak_action=api_record_view&id=59&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://lorinator.feminoise.com/simple-steps-to-a-faster-wordpress-dashboard/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to embed YouTube videos in your Wordpress blog with the Extreme Video plugin</title>
		<link>http://lorinator.feminoise.com/how-to-embed-youtube-videos-in-your-wordpress-blog-with-the-extreme-video-plugin/</link>
		<comments>http://lorinator.feminoise.com/how-to-embed-youtube-videos-in-your-wordpress-blog-with-the-extreme-video-plugin/#comments</comments>
		<pubDate>Sat, 23 Sep 2006 21:14:03 +0000</pubDate>
		<dc:creator>Lorinator</dc:creator>
				<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://lorinator.feminoise.com/how-to-embed-youtube-videos-in-your-wordpress-blog-with-the-extreme-video-plugin/</guid>
		<description><![CDATA[To use this tutorial, you should already have the Extreme Video Plugin installed and configured. If you haven&#8217;t made it that far, see my earlier tutorial about installing the Extreme Video plugin and embedding Google videos. It contains all the instructions you need, and links to where you can download the plugin.
Instructions
A printer-friendly copy of [...]]]></description>
			<content:encoded><![CDATA[<p>To use this tutorial, you should already have the Extreme Video Plugin installed and configured. If you haven&#8217;t made it that far, see my earlier tutorial about <a href="http://lorinator.feminoise.com/how-to-embed-google-videos-in-your-wordpress-blog-with-the-extreme-video-plugin/">installing the Extreme Video plugin and embedding Google videos</a>. It contains all the instructions you need, and links to where you can download the plugin.</p>
<h3>Instructions</h3>
<p>A printer-friendly copy of these instructions is available <a href="http://lorinator.feminoise.com/downloads/ev_youtube_img.htm">with images</a> and <a href="http://lorinator.feminoise.com/downloads/ev_youtube_noimg.htm">without</a>.</p>
<p>1. Go to <a href="http://www.youtube.com/">YouTube</a> and find a video you want to embed. Again, I will be a brazen self-promoting hussy and use one of my own videos, from my band <a href="http://www.streamofpassion.com">Stream of Passion</a> ;-p</p>
<p>2. All of the code we need is inside the &#8220;URL&#8221; field, see the pink circle below:</p>
<div class="imgcenter"><img src="http://lorinator.feminoise.com/img/embed_video_tutorial4.jpg" width="500" height="314" alt="embedding a YouTube video" /></div>
<p>Copy and paste the code from this field into a text document so you have it for reference. You&#8217;ll end up with something like this (The part you need is highlighted in red):</p>
<p><code class="codebox"> URL: http://www.youtube.com/watch?v=<span style="color:red">cnSnXSbmvVg</span><br />
</code></p>
<p>4. Now you just copy the important red part into the Extreme video tag in your Wordpress blog post. Go to your Wordpress dashboard and create a new post.</p>
<p>The basic format for embedding videos in your posts looks like this:</p>
<p><code class="codebox">&#91;gv&nbsp;data=&quot;data string&quot;<br /> width=&quot;width in pixels&quot; height=&quot;height in pixels&quot;&#93;&#91;&#47;gv&#93;<br />
</code></p>
<p>Unfortunately, the height and width tags don&#8217;t seem to work very well for YouTube videos. The controls disappear, and the video alignment gets shifted to the bottom right corner. So you can just leave them out and the player will default to its usual size. Thus, for our example video, you&#8217;d type something like this:</p>
<p><code class="codebox">&#91;gv&nbsp;data=&quot;<span style="color:red;">cnSnXSbmvVg</span>&quot;&#93;&#91;&#47;gv&#93;<br />
</code></p>
<p>Publish your post and enjoy your video!</p>
<p>5. Changing the size<br />
As noted above, I&#8217;ve not figured out how to adjust the size of YouTube videos. If someone knows a simple way to do this, please let me know! (And please post in the comments on the <a href="http://www.rossgerbasi.com/2006/01/21/extreme-video-plugin-20/">plugin author&#8217;s site</a>).</p>
<p>That&#8217;s it! Enjoy embedding your videos. Feel free to <a href="http://lorinator.feminoise.com/contact/">get in touch</a> with your comments and questions about the instructions here. Note that I can&#8217;t answer general questions about the plugin itself; for that you&#8217;ll need to contact the plugin author.</p>
<p>And make sure to visit the <a href="http://www.rossgerbasi.com/2006/01/21/extreme-video-plugin-20/">plugin author&#8217;s site</a> and let him know how much you appreciate his work!</p>
<img src="http://lorinator.feminoise.com/?ak_action=api_record_view&id=53&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://lorinator.feminoise.com/how-to-embed-youtube-videos-in-your-wordpress-blog-with-the-extreme-video-plugin/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to embed Google videos in your Wordpress blog with the Extreme Video plugin</title>
		<link>http://lorinator.feminoise.com/how-to-embed-google-videos-in-your-wordpress-blog-with-the-extreme-video-plugin/</link>
		<comments>http://lorinator.feminoise.com/how-to-embed-google-videos-in-your-wordpress-blog-with-the-extreme-video-plugin/#comments</comments>
		<pubDate>Sat, 23 Sep 2006 21:13:53 +0000</pubDate>
		<dc:creator>Lorinator</dc:creator>
				<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://lorinator.feminoise.com/how-to-embed-google-videos-in-your-wordpress-blog-with-the-extreme-video-plugin/</guid>
		<description><![CDATA[The Extreme Video Plugin for Wordpress, written by Ross Gerbasi, lets you easily embed Google videos in your Wordpress blog.  But judging from  the comments on the plugin page, a lot of people have trouble getting it up and running; it seems like just downloading the plugin&#8217;s files is a daunting task for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rossgerbasi.com/2006/01/21/extreme-video-plugin-20/">The Extreme Video Plugin for Wordpress</a>, written by <a href="http://www.rossgerbasi.com/">Ross Gerbasi</a>, lets you easily embed Google videos in your Wordpress blog.  But judging from  the <a href="http://www.rossgerbasi.com/2006/01/14/google-video-plugin/#comments">comments</a> on the plugin page, a lot of people have trouble getting it up and running; it seems like just downloading the plugin&#8217;s files is a daunting task for some.</p>
<p>I kept notes as I worked through the installation process, and turned them into this tutorial. Even if you are fairly new to Wordpress, these instructions should help you get the Extreme Video plugin installed and configured. Take your time, read slowly, and you should be OK. If you like, you can print the instructions <a href="http://lorinator.feminoise.com/downloads/ev_install_img.htm">with images</a> or <a href="http://lorinator.feminoise.com/downloads/ev_install_noimg.htm">without</a> to refer to as you work.</p>
<p>Note: I am using the <a href="http://wordpress.org/download/">latest stable release of Wordpress</a>, and my current theme is a variation of Reef Sandals&#8217;s <a href="http://wpthemes.info/misty-look/">Misty Look.</a> If you are using other versions of Wordpress or other themes, your results may vary.</p>
<h3>Download the files</h3>
<p>Before you begin, download the plugin files. You can either get them from the <a href="http://www.rossgerbasi.com/2006/01/21/extreme-video-plugin-20/">author&#8217;s site</a>, or download everything in a .zip file from me.</p>
<p><a href="http://lorinator.feminoise.com/downloads/extreme_video_2.3.zip" class="noborder"><img src="http://lorinator.feminoise.com/img/download_button.jpg" alt="download extreme video plugin files" title="download extreme video plugin files" /></a></p>
<p>The contents of the zip hosted here are:</p>
<p><code>wp-ExtremeVideo.php</code> [the plugin file, version 2.3 BETA]<br />
<code>flvPlayer.swf</code> [the Flash video player]<br />
<code>gv.swf </code>[the Google Video player &mdash; renamed to fit the plugin's defaults]</p>
<p>The files were downloaded from the <a href="http://www.rossgerbasi.com/2006/01/21/extreme-video-plugin-20/">author&#8217;s site</a> on September 23, 2006, virus checked, and zipped.</p>
<p>&nbsp;</p>
<h3>Install and configure the Extreme Video plugin for Wordpress</h3>
<p>1. I advise putting the <code>.swf</code> files in their own directory on your site. Use an existing directory, or create a new one one.  On my site I created one called <code>swf</code>, and I&#8217;ll refer to this <code>swf</code> directory throughout in the instructions below.</p>
<p>I&#8217;m also assuming that you are using the files in my .zip file.  If you are using the files downloaded from the <a href="http://www.rossgerbasi.com/2006/01/21/extreme-video-plugin-20/"> plugin author&#8217;s site</a>, you&#8217;ll need to rename <code>googleplayer.swf</code> to <code>gv.swf</code>. Once you&#8217;ve done that, the instructions below will make sense if you start with step 3.</p>
<p>2. Unzip <code>extreme_video_2.3.zip</code></p>
<p>3. Upload <code>gv.swf</code> and <code>flvPlayer.swf</code> to the <code>swf </code> directory on your Wordpress blog&#8217;s website.</p>
<p>4. Open <code>wp-ExtremeVideo.php</code> in your favorite text editor.</p>
<p>5. Scroll down to line 77 or so, until you find this bit of code:</p>
<p><code class="codebox">&#47;&#47;* defaults to home url&#47;gv.swf<br />
DEFINE(&#39;GV_MYGVURL&#39;,get_settings(&#39;home&#39;).&#39;<span style="color:red;">&#47;gv.swf</span>&#39;);</code></p>
<p>Change the red part above to reflect the real path to gv.swf on your blog&#8217;s website. For our example, it might look like this if your domain is www.mysite.com, and your Wordpress install is in the root:</p>
<p><code class="codebox"> &#47;&#47;* defaults to home url&#47;gv.swf<br />
  DEFINE(&#39;GV_MYGVURL&#39;,get_settings(&#39;home&#39;).&#39;<span style="color:red;">http:&#47;&#47;www.mysite.com&#47;swf&#47;gv.swf</span>&#39;);</code></p>
<p>6. Scroll to line 108 or so until you find this bit of code:</p>
<p><code class="codebox">&#47;&#47;Path to Flash FLV PLayer SWF< br /><br />
DEFINE(&#39;PP_PLAYERPATH&#39;, &quot;<span style="color:red">http:&#47;&#47;www.yourpath.com&#47;flvPlayer.swf</span>&quot;);</code></p>
<p>This tells the script where to find the video player on your site. For our example, change the red part to this:</p>
<p><code class="codebox">&#47;&#47;Path to Flash FLV PLayer SWF<br />
DEFINE(&#39;PP_PLAYERPATH&#39;, &quot;<span style="color:red;">http:&#47;&#47;www.mysite.com&#47;swf&#47;flvPlayer.swf</span>&quot;);<br />
</code></p>
<p>7. You are done editing! Save the <code>wp-ExtremeVideo.php</code> file and upload it to your Wordpress plugins directory.</p>
<p>By now you should have uploaded <code>gv.swf</code> and <code>flvPlayer.swf</code> to your swf directory, and <code>wp-ExtremeVideo.php</code> to your plugins directory. Here is what the directory structure should look like:</p>
<div class="imgcenter"><img src="http://lorinator.feminoise.com/img/embed_video_index.jpg" alt="image of directory structure" height="341" width="500"/></div>
<p>If this much has been challenging for you, take a break and pat yourself on the back. Have a nice cup of tea or coffee. When you&#8217;re feeling refreshed and strong again, continue to the next step: ACTIVATION, baby! <img src='http://lorinator.feminoise.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<h3>Activate the Extreme Video plugin in Wordpress</h3>
<p>Log in to your Wordpress dashboard, and click the <em>Plugins</em> tab. You should see the WP-Extreme Video plugin listed. Click <em>Activate </em>to (duh!) activate the plugin.</p>
<p>That&#8217;s all you need to do to configure and install the plugin for basic use. Now we&#8217;ll look at how to embed a video in a post. I will cover Google Video in this tutorial. For the YouTube instructions, see my  tutorial <a href="http://lorinator.feminoise.com/how-to-embed-youtube-videos-in-your-wordpress-blog-with-the-extreme-video-plugin">here </a>.</p>
<h3>Embedding a Google Video in your Wordpress Blog with the Extreme Video plugin</h3>
<p>1. Go to <a href="http://video.google.com">Google video</a> and find a video you want to embed. For our example, I will be a cheeky tart and use one of my own videos. This is its URL,  the address where it lives on Google. The part in red below tells Google which particular video you want to play; it&#8217;s the unique identifier for your particular video.</p>
<p><code class="codebox">http://video.google.com/videoplay?docid=<span style="color:#ff0000">-1528165567147684910</span><br />
</code></p>
<p>Once you are on the page of the Google video you want to embed, click the blue button in the right-hand sidebar that says <code>Email - Blog - Post to MySpace</code>. It&#8217;s circled in pink in the picture below.</p>
<div class="imgcenter"><img src="http://lorinator.feminoise.com/img/embed_video_tutorial1.jpg" height="314" width="500" alt="google video step 1" /></div>
<p>2. Click the link to &#8220;Embed HTML&#8221; (see below)</p>
<div class="imgcenter"><img src="http://lorinator.feminoise.com/img/embed_video_tutorial2.jpg" height="314" width="500" alt="google video step 2" /></div>
<p>3. A window with some code will appear (see below).</p>
<div class="imgcenter"><img src="http://lorinator.feminoise.com/img/embed_video_tutorial3.jpg" height="314" width="500" alt="google video step 3" /></div>
<p>This code contains all the information you need to embed the video in your Wordpress blog. Copy the code and paste it into a text document so that you have it to refer to. My code for this particular video looks like this (important parts in red):</p>
<p><code class="codebox">&lt;embed style=&quot;width:<span style="color:red">400</span>px; height:<span style="color:red">326</span>px;&quot; id=&quot;VideoPlayback&quot; type=&quot;application/x-shockwave-flash&quot; src=&quot;<span style="color:red">http://video.google.com/googleplayer.swf?docId=-1528165567147684910&#038;hl=en</span>&quot;> &lt;&#47;embed&gt;<br />
</code></p>
<p>(The <code>&amp;hl=en</code> part just tells the Google player to use English &mdash; if you are using Google in another language, your code may look a bit different. You can leave that part of the code out, and Google will just use the default language.)</p>
<p>4. Now go to your Wordpress Dashboard and click the <em>Write</em> tab to open the <em>Write Post</em> window.</p>
<p>5. The basic format for embedding videos in your posts looks like this:</p>
<p><code class="codebox">&#91;gv&nbsp;data=&quot;data string&quot;<br /> width=&quot;width in pixels&quot; height=&quot;height in pixels&quot;&#93;&#91;&#47;gv&#93;<br />
</code></p>
<p>Below you&#8217;ll see the code you need to embed a Google video (I have inserted line breaks so it will fit on the page. <strong>The data tag should be all one line in your actual post</strong>). Note that I&#8217;ve inserted the important red parts from the Google code we just looked at above:</p>
<p><code class="codebox">&#91;gv&nbsp;data=&quot;<span style="color:red">http:&#47;&#47;video.google.com&#47;googleplayer.swf?docId=-1528165567147684910&amp;hl=en</span>&quot;<br /> width=&quot;<span style="color:red;">400</span>&quot; height=&quot;<span style="color:red;">326</span>&quot;&#93;&#91;&#47;gv&#93;<br />
</code></p>
<p>If you have correctly installed and configured the plugin and uploaded the <code>.swf</code> files to the right directory (as explained above), you should see the video when you publish and view the post. In your own case, the code will be different to mine &mdash; it will reflect the address of your particular Google video.</p>
<p>If you don&#8217;t see the video when you publish your post, then something is whacky and beyond my skill to heal, or you&#8217;ve got a typo somewhere. Carefully check your code and make sure you don&#8217;t have any missed quotation marks or other little mistakes.</p>
<p>6. Unfortunately, there is a problem with this plugin that breaks the &#8220;View this video on Google&#8221; link. If you want to fix this, you have to go back and edit your post. I&#8217;m taking you through this step by step just so you can understand the process involved &mdash; once you know what to do you can of course fix the broken link when you first embed the video.</p>
<p>To fix the broken link, you need to add the <code>&#038;playerId=</code> code to your &#8220;data&#8221; string. After the <code>&#038;playerId=</code> you put the same address number that you have in the docId. So for my particular video I need to add this:</p>
<p><code class="codebox"><span style="color:red">&amp;playerId=-1528165567147684910</span><br />
</code></p>
<p>The full string now looks like this (again, I have inserted line breaks so it will fit on the page &#8211; the &#8220;data&#8221; string should be all one unbroken line with no spaces in it):</p>
<p><code class="codebox">&#91;gv&nbsp;data=&quot;http:&#47;&#47;video.google.com&#47;googleplayer.swf?docId=<span style="color:red">-1528165567147684910</span><br />&#038;hl=en&amp;playerId=<span style="color:red;">-1528165567147684910</span>&quot;<br />width=&quot;400&quot; height=&quot;326&quot;&#93;&#91;/gv&#93;<br />
</code></p>
<p>When you republish the post, the link to &#8220;view this video on Google&#8221; should now work. <img src='http://lorinator.feminoise.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h3>Changing the size of the embedded video.</h3>
<p>You can change the size of the player on your site. Just replace the values inside the width=&#8221;400&#8243; and height=&#8221;326&#8243; tags with whatever you want. I usually multiply each value by a decimal to keep the aspect ratio correct. A nice size for my example video is 80% of the original size. For example</p>
<p>400 * 0.8 = <strong>320</strong><br />
326 * 0.8 = <strong>261</strong>.</p>
<p>So the new code looks like this (again, I&#8217;ve added line breaks here):</p>
<p><code class="codebox">[gv&nbsp;data=&quot;http://video.google.com/googleplayer.swf?docId=-1528165567147684910<br />&#038;hl=en&#038;playerId=-1528165567147684910&quot; width=&quot;320&quot; height=&quot;261&quot;][/gv]<br />
</code></p>
<p>Trying to make the Google player smaller than about 280 x 228 pixels is not a good idea, because the playback controls get squashed and ugly.</p>
<p>That&#8217;s all there is to it! You should now be up an running, able to use the Extreme Video plugin to easily embed Google videos in your Wordpress blog!</p>
<p>If you have questions or comments, please feel free to let it rip in the comments section, or drop me an <a href="http://lorinator.feminoise.com/contact/">email</a>. Note that I cannot provide support for the plugin itself, I can only clarify any instructions I&#8217;ve provided here.</p>
<p>Please remember visit the <a href="http://www.rossgerbasi.com/2006/01/21/extreme-video-plugin-20/">plugin author&#8217;s site</a> and let him know how much you appreciate his work!</p>
<p>For embedding YouTube videos, see my tutorial here:<br />
<a href="http://lorinator.feminoise.com/how-to-embed-youtube-videos-in-your-wordpress-blog-with-the-extreme-video-plugin"><br />
How to embed YouTube videos in Wordpress with the Extreme Video plugin</a>.</p>
<img src="http://lorinator.feminoise.com/?ak_action=api_record_view&id=52&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://lorinator.feminoise.com/how-to-embed-google-videos-in-your-wordpress-blog-with-the-extreme-video-plugin/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
