<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Mehigh</title>
	<atom:link href="http://mehigh.biz/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://mehigh.biz</link>
	<description>Rockstar Web Developer</description>
	<lastBuildDate>Sat, 18 Feb 2012 20:54:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha-19948</generator>
	<item>
		<title>Comment on Adding wmode transparent to WordPress 3 media embeds by rus</title>
		<link>http://mehigh.biz/wordpress/adding-wmode-transparent-to-wordpress-3-media-embeds.html#comment-400</link>
		<dc:creator>rus</dc:creator>
		<pubDate>Sat, 18 Feb 2012 20:54:11 +0000</pubDate>
		<guid isPermaLink="false">http://mehigh.biz/?p=19#comment-400</guid>
		<description>I&#039;m not really sure how to check for collisions..

I&#039;ve pasted it right after the &lt;?php

I do find it a bit weird adding the:
add_filter( &#039;embed_oembed_html&#039;, &#039;add_video_wmode_transparent&#039;, 10, 3);
inside the functions import. :S</description>
		<content:encoded><![CDATA[<p>I&#8217;m not really sure how to check for collisions..</p>
<p>I&#8217;ve pasted it right after the &lt;?php</p>
<p>I do find it a bit weird adding the:<br />
add_filter( &#039;embed_oembed_html&#039;, &#039;add_video_wmode_transparent&#039;, 10, 3);<br />
inside the functions import. :S</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding wmode transparent to WordPress 3 media embeds by mehigh</title>
		<link>http://mehigh.biz/wordpress/adding-wmode-transparent-to-wordpress-3-media-embeds.html#comment-399</link>
		<dc:creator>mehigh</dc:creator>
		<pubDate>Sat, 18 Feb 2012 09:35:45 +0000</pubDate>
		<guid isPermaLink="false">http://mehigh.biz/?p=19#comment-399</guid>
		<description>I&#039;m using the updated function (the 2nd one in the post, which works for iFrames as well) and it works perfectly fine on WordPress 3.3.1.
Check the placement of the function in your functions.php and make sure it doesn&#039;t interfere with any other functions in there.</description>
		<content:encoded><![CDATA[<p>I&#8217;m using the updated function (the 2nd one in the post, which works for iFrames as well) and it works perfectly fine on WordPress 3.3.1.<br />
Check the placement of the function in your functions.php and make sure it doesn&#8217;t interfere with any other functions in there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding wmode transparent to WordPress 3 media embeds by rus</title>
		<link>http://mehigh.biz/wordpress/adding-wmode-transparent-to-wordpress-3-media-embeds.html#comment-396</link>
		<dc:creator>rus</dc:creator>
		<pubDate>Sat, 18 Feb 2012 02:33:27 +0000</pubDate>
		<guid isPermaLink="false">http://mehigh.biz/?p=19#comment-396</guid>
		<description>its not working for me, :S

crashes the whole thing for some reason.

I’m on WP 3.3.1 btw</description>
		<content:encoded><![CDATA[<p>its not working for me, :S</p>
<p>crashes the whole thing for some reason.</p>
<p>I’m on WP 3.3.1 btw</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding wmode transparent to WordPress 3 media embeds by David C</title>
		<link>http://mehigh.biz/wordpress/adding-wmode-transparent-to-wordpress-3-media-embeds.html#comment-342</link>
		<dc:creator>David C</dc:creator>
		<pubDate>Sat, 04 Feb 2012 14:31:44 +0000</pubDate>
		<guid isPermaLink="false">http://mehigh.biz/?p=19#comment-342</guid>
		<description>Thanks for the function -- huge help.  I took it and cleaned it up some, though now it&#039;s maybe not as readable.  This works well for me:

function add_wmode_opaque($html, $url, $attr) {
	$html = preg_replace(&#039;/feature=oembed/&#039;, &#039;$0&amp;wmode=opaque&#039;, $html);
	$html = preg_replace(&#039;/(object&#124;embed).*?height=\&quot;\d+\&quot;/&#039;, &#039;$0 wmode=&quot;opaque&quot;&#039;, $html);
	return $html;
}
add_filter(&#039;oembed_result&#039;, &#039;add_wmode_opaque&#039;, 10, 3);

PS. Thanks also to patrick91 -- using oembed_result was really useful for me.</description>
		<content:encoded><![CDATA[<p>Thanks for the function &#8212; huge help.  I took it and cleaned it up some, though now it&#8217;s maybe not as readable.  This works well for me:</p>
<p>function add_wmode_opaque($html, $url, $attr) {<br />
	$html = preg_replace(&#8216;/feature=oembed/&#8217;, &#8216;$0&amp;wmode=opaque&#8217;, $html);<br />
	$html = preg_replace(&#8216;/(object|embed).*?height=\&#8221;\d+\&#8221;/&#8217;, &#8216;$0 wmode=&#8221;opaque&#8221;&#8216;, $html);<br />
	return $html;<br />
}<br />
add_filter(&#8216;oembed_result&#8217;, &#8216;add_wmode_opaque&#8217;, 10, 3);</p>
<p>PS. Thanks also to patrick91 &#8212; using oembed_result was really useful for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding wmode transparent to WordPress 3 media embeds by Add &#8220;wmode&#8221; to youtube clips embeded with oEmbed in Wordpress &#124; Developer In A Bad Mood</title>
		<link>http://mehigh.biz/wordpress/adding-wmode-transparent-to-wordpress-3-media-embeds.html#comment-324</link>
		<dc:creator>Add &#8220;wmode&#8221; to youtube clips embeded with oEmbed in Wordpress &#124; Developer In A Bad Mood</dc:creator>
		<pubDate>Wed, 01 Feb 2012 17:07:05 +0000</pubDate>
		<guid isPermaLink="false">http://mehigh.biz/?p=19#comment-324</guid>
		<description>[...] function of WordPress and I have some sort of lightbox, the video is on top of that. So I found this solution. Just add the following code to your functions.php file in your [...]</description>
		<content:encoded><![CDATA[<p>[...] function of WordPress and I have some sort of lightbox, the video is on top of that. So I found this solution. Just add the following code to your functions.php file in your [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding wmode transparent to WordPress 3 media embeds by PyMEL &#124; Mind&#039;s A.I.</title>
		<link>http://mehigh.biz/wordpress/adding-wmode-transparent-to-wordpress-3-media-embeds.html#comment-266</link>
		<dc:creator>PyMEL &#124; Mind&#039;s A.I.</dc:creator>
		<pubDate>Fri, 20 Jan 2012 07:17:16 +0000</pubDate>
		<guid isPermaLink="false">http://mehigh.biz/?p=19#comment-266</guid>
		<description>[...] Here is a solution for editing the functions.php function used to embed videos to set the wmode parameter automatically on regularly input YouTube links. [...]</description>
		<content:encoded><![CDATA[<p>[...] Here is a solution for editing the functions.php function used to embed videos to set the wmode parameter automatically on regularly input YouTube links. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding wmode transparent to WordPress 3 media embeds by mehigh</title>
		<link>http://mehigh.biz/wordpress/adding-wmode-transparent-to-wordpress-3-media-embeds.html#comment-258</link>
		<dc:creator>mehigh</dc:creator>
		<pubDate>Thu, 19 Jan 2012 18:21:38 +0000</pubDate>
		<guid isPermaLink="false">http://mehigh.biz/?p=19#comment-258</guid>
		<description>Wordpress was a bit over-zeleous and add in his &#039;pretty quotes&#039; on my pasted code. It&#039;s fixed now.</description>
		<content:encoded><![CDATA[<p>WordPress was a bit over-zeleous and add in his &#8216;pretty quotes&#8217; on my pasted code. It&#8217;s fixed now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding wmode transparent to WordPress 3 media embeds by Eric</title>
		<link>http://mehigh.biz/wordpress/adding-wmode-transparent-to-wordpress-3-media-embeds.html#comment-257</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Thu, 19 Jan 2012 18:06:08 +0000</pubDate>
		<guid isPermaLink="false">http://mehigh.biz/?p=19#comment-257</guid>
		<description>Thanks! Huge help. One thing, the following line&#039;s first quote mark is incorrect:

if ( strpos( $html, “&lt;embed src=&quot; ) !== false )

Should be:

if ( strpos( $html, &quot;&lt;embed src=&quot; ) !== false )</description>
		<content:encoded><![CDATA[<p>Thanks! Huge help. One thing, the following line&#8217;s first quote mark is incorrect:</p>
<p>if ( strpos( $html, “&lt;embed src=&quot; ) !== false )</p>
<p>Should be:</p>
<p>if ( strpos( $html, &quot;&lt;embed src=&quot; ) !== false )</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding wmode transparent to WordPress 3 media embeds by patrick91</title>
		<link>http://mehigh.biz/wordpress/adding-wmode-transparent-to-wordpress-3-media-embeds.html#comment-237</link>
		<dc:creator>patrick91</dc:creator>
		<pubDate>Mon, 16 Jan 2012 12:18:01 +0000</pubDate>
		<guid isPermaLink="false">http://mehigh.biz/?p=19#comment-237</guid>
		<description>I&#039;d change the filter from &quot;embed_oembed_html&quot; to &quot;oembed_result&quot; so that it&#039;ll work also with &quot;wp_oembed_get&quot; :)

PS. Thanks for the post :)</description>
		<content:encoded><![CDATA[<p>I&#8217;d change the filter from &#8220;embed_oembed_html&#8221; to &#8220;oembed_result&#8221; so that it&#8217;ll work also with &#8220;wp_oembed_get&#8221; <img src='http://mehigh.biz/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>PS. Thanks for the post <img src='http://mehigh.biz/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding wmode transparent to WordPress 3 media embeds by mehigh</title>
		<link>http://mehigh.biz/wordpress/adding-wmode-transparent-to-wordpress-3-media-embeds.html#comment-191</link>
		<dc:creator>mehigh</dc:creator>
		<pubDate>Sat, 07 Jan 2012 23:32:54 +0000</pubDate>
		<guid isPermaLink="false">http://mehigh.biz/?p=19#comment-191</guid>
		<description>I&#039;ve added the extra brackets, thanks for your input.
On my setup, the single commands were working properly even without the brackets, so there might be some PHP version that might stumble into them somehow, and therefore needs the extra brackets for precise guidance.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve added the extra brackets, thanks for your input.<br />
On my setup, the single commands were working properly even without the brackets, so there might be some PHP version that might stumble into them somehow, and therefore needs the extra brackets for precise guidance.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

