<?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>Tiger Strike Media</title>
	<atom:link href="http://www.tigerstrikemedia.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tigerstrikemedia.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Fri, 04 May 2012 23:14:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>WordPress 3.4</title>
		<link>http://www.tigerstrikemedia.com/wordpress-3-4/</link>
		<comments>http://www.tigerstrikemedia.com/wordpress-3-4/#comments</comments>
		<pubDate>Fri, 04 May 2012 23:13:07 +0000</pubDate>
		<dc:creator>Tiger Strike Media</dc:creator>
				<category><![CDATA[General News]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.tigerstrikemedia.com/?p=605</guid>
		<description><![CDATA[Yep, Its nearly update time to update your WordPress site again, but i must say that this time around there...]]></description>
			<content:encoded><![CDATA[<p>Yep, Its nearly update time to update your WordPress site again, but i must say that this time around there has been a fair time between drinks, with just 2 minor security updates in between major version updates ( as of writing this article ), it has been pretty smooth sailing for the Tiger Strike Media team.</p>
<p>With many people still coming to grips with the new features from WordPress 3.3  the core team wanted to put a firm focus behind the scenes with performance improvements in many areas of the site, and a massive improvement in the database querying which will massively help very large databases.</p>
<p>With nearly <a href="http://core.trac.wordpress.org/query?milestone=3.4&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority">480 tickets slated for WordPress 3.4</a>, there are a lot of changes taking place to the WordPress software, but ultimately the changes you should see in your WordPress site will be very minor, things like HTML will now be supported in image captions, Improvements to the custom header functionality and many other small UI changes.</p>
<p>Under the surface or WordPress there have been improvements to the help screen api, i18n, database queries and much more. You can see the codex page <a href="http://codex.wordpress.org/Version_3.4">here</a> and noticeably, not a lot happening in the UI department, but a lot of work in the stuff that developers will understand.</p>
<p>Basically, this version of WordPress will be a smooth update for everyone who has a normal installation, and standards compliant themes and plugins on their site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigerstrikemedia.com/wordpress-3-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Use The WordPress Gallery Shortcode</title>
		<link>http://www.tigerstrikemedia.com/wordpress-gallery-shortcode/</link>
		<comments>http://www.tigerstrikemedia.com/wordpress-gallery-shortcode/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 20:11:08 +0000</pubDate>
		<dc:creator>Tiger Strike Media</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Gallery]]></category>
		<category><![CDATA[Shortcode]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.tigerstrikemedia.com/?p=578</guid>
		<description><![CDATA[The gallery shortcode is one of the least understood but one of the most powerful and easiest to use pieces...]]></description>
			<content:encoded><![CDATA[<p>The gallery shortcode is one of the least understood but one of the most powerful and easiest to use pieces of functionality in WordPress.</p>
<h3>Uploading Images</h3>
<p>This is where WordPress really shows some of its strengths, All you have to do is upload the images while you are in the post or page editing page. When you upload the images from here they are automatically attached to the post or page as attachment images. Just one shortcode later and you will have an image gallery displaying on your site.</p>
<h3>The WordPress Gallery Shortcode</h3>
<p>At its most basic usage it is simply <code>&#91;gallery&#93;</code> this will use the defaults to display the WordPress gallery.</p>
<p>Most WordPress gallery features can easily be edited using attributes for the shortcode the size of the images the number of columns even the order of the images can be edited.</p>
<ul>
<li><strong>id</strong> &#8211; This attribute if set will use the gallery from a post I&#8217;d that is not currently being displayed.</li>
<li><strong>columns</strong> &#8211; This will edit the number of columns that are displayed in the WordPress gallery on your site</li>
<li><strong>link</strong> &#8211; This will change the location of the link the image links to. Default options are image and file useful if you are having a JavaScript popup to display the full size image in an overlay</li>
<li><strong>image size</strong> &#8211; This changes the size of the image to display in your WordPress gallery. This can be any default size or any custom image size you have running in your site</li>
<li><strong>order</strong> &#8211; This can be set to ASC or DESC and changes the order of the images in your WordPress gallery</li>
<li><strong>order by</strong> &#8211; This changes what defines the order your images are displayed in your WordPress. The default is &#8220;menu_order&#8221; but some other options are: &#8220;ID&#8221;, &#8220;title&#8221; and &#8220;date&#8221;</li>
</ul>
<h3>Using Attributes</h3>
<p>Attributes in any WordPress shortcode can be modified like so:</p>
<p><code>&#91;gallery attribute="value"&#93;</code></p>
<p>A general rule of thumb is to have the quotation marks around the value as this enables you to have spaces if necessary in the value. Also you should have a space between any attributes.</p>
<h3>Gallery Shortcode Examples</h3>
<p>As you can see from the below examples, there are many options available to change the way the WordPress gallery is displayed on your site.</p>
<p><code>&#91;gallery columns="3" size="thumbnail"&#93;</code><br />

<a href='http://www.tigerstrikemedia.com/wordpress-gallery-shortcode/blue-xl1/' title='blue-xl1'><img width="150" height="150" src="http://www.tigerstrikemedia.com/wp-content/uploads/2012/03/blue-xl1-150x150.png" class="attachment-thumbnail" alt="blue-xl1" title="blue-xl1" /></a>
<a href='http://www.tigerstrikemedia.com/wordpress-gallery-shortcode/wordpress-logo-notext-rgb/' title='wordpress-logo-notext-rgb'><img width="150" height="150" src="http://www.tigerstrikemedia.com/wp-content/uploads/2012/03/wordpress-logo-notext-rgb-150x150.png" class="attachment-thumbnail" alt="wordpress-logo-notext-rgb" title="wordpress-logo-notext-rgb" /></a>
<a href='http://www.tigerstrikemedia.com/wordpress-gallery-shortcode/wp-blue-320x480/' title='wp-blue-320x480'><img width="150" height="150" src="http://www.tigerstrikemedia.com/wp-content/uploads/2012/03/wp-blue-320x480-150x150.png" class="attachment-thumbnail" alt="wp-blue-320x480" title="wp-blue-320x480" /></a>
</p>
<p><code>&#91;gallery columns="3" size="thumbnail" link="file"&#93;</code><br />

<a href='http://www.tigerstrikemedia.com/wordpress-gallery-shortcode/blue-xl1/' title='blue-xl1'><img width="150" height="150" src="http://www.tigerstrikemedia.com/wp-content/uploads/2012/03/blue-xl1-150x150.png" class="attachment-thumbnail" alt="blue-xl1" title="blue-xl1" /></a>
<a href='http://www.tigerstrikemedia.com/wordpress-gallery-shortcode/wordpress-logo-notext-rgb/' title='wordpress-logo-notext-rgb'><img width="150" height="150" src="http://www.tigerstrikemedia.com/wp-content/uploads/2012/03/wordpress-logo-notext-rgb-150x150.png" class="attachment-thumbnail" alt="wordpress-logo-notext-rgb" title="wordpress-logo-notext-rgb" /></a>
<a href='http://www.tigerstrikemedia.com/wordpress-gallery-shortcode/wp-blue-320x480/' title='wp-blue-320x480'><img width="150" height="150" src="http://www.tigerstrikemedia.com/wp-content/uploads/2012/03/wp-blue-320x480-150x150.png" class="attachment-thumbnail" alt="wp-blue-320x480" title="wp-blue-320x480" /></a>
</p>
<p><code>&#91;gallery columns="2" size="medium" link="file"&#93;</code><br />

<a href='http://www.tigerstrikemedia.com/wordpress-gallery-shortcode/blue-xl1/' title='blue-xl1'><img width="250" height="250" src="http://www.tigerstrikemedia.com/wp-content/uploads/2012/03/blue-xl1.png" class="attachment-medium" alt="blue-xl1" title="blue-xl1" /></a>
<a href='http://www.tigerstrikemedia.com/wordpress-gallery-shortcode/wordpress-logo-notext-rgb/' title='wordpress-logo-notext-rgb'><img width="300" height="300" src="http://www.tigerstrikemedia.com/wp-content/uploads/2012/03/wordpress-logo-notext-rgb-300x300.png" class="attachment-medium" alt="wordpress-logo-notext-rgb" title="wordpress-logo-notext-rgb" /></a>
<a href='http://www.tigerstrikemedia.com/wordpress-gallery-shortcode/wp-blue-320x480/' title='wp-blue-320x480'><img width="200" height="300" src="http://www.tigerstrikemedia.com/wp-content/uploads/2012/03/wp-blue-320x480-200x300.png" class="attachment-medium" alt="wp-blue-320x480" title="wp-blue-320x480" /></a>
</p>
<p><code>&#91;gallery columns="1" size="full" link="file"&#93;</code><br />

<a href='http://www.tigerstrikemedia.com/wordpress-gallery-shortcode/blue-xl1/' title='blue-xl1'><img width="250" height="250" src="http://www.tigerstrikemedia.com/wp-content/uploads/2012/03/blue-xl1.png" class="attachment-full" alt="blue-xl1" title="blue-xl1" /></a>
<a href='http://www.tigerstrikemedia.com/wordpress-gallery-shortcode/wordpress-logo-notext-rgb/' title='wordpress-logo-notext-rgb'><img width="500" height="500" src="http://www.tigerstrikemedia.com/wp-content/uploads/2012/03/wordpress-logo-notext-rgb.png" class="attachment-full" alt="wordpress-logo-notext-rgb" title="wordpress-logo-notext-rgb" /></a>
<a href='http://www.tigerstrikemedia.com/wordpress-gallery-shortcode/wp-blue-320x480/' title='wp-blue-320x480'><img width="320" height="480" src="http://www.tigerstrikemedia.com/wp-content/uploads/2012/03/wp-blue-320x480.png" class="attachment-full" alt="wp-blue-320x480" title="wp-blue-320x480" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigerstrikemedia.com/wordpress-gallery-shortcode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom WordPress Themes</title>
		<link>http://www.tigerstrikemedia.com/custom-wordpress-themes/</link>
		<comments>http://www.tigerstrikemedia.com/custom-wordpress-themes/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 11:35:18 +0000</pubDate>
		<dc:creator>Fiona</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.tigerstrikemedia.com/?p=562</guid>
		<description><![CDATA[At TigerStrike Media we build custom WordPress themes. WordPress Themes are layout files that specify to an Internet browser how...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tigerstrikemedia.com/wp-content/uploads/2012/02/wordpress-themes.png"><img class="alignright size-full wp-image-570" style="margin-top: 10px; margin-bottom: 10px; margin-left: 15px; margin-right: 15px;" title="wordpress-themes" src="http://www.tigerstrikemedia.com/wp-content/uploads/2012/02/wordpress-themes.png" alt="wordpress-themes" width="250" height="250" /></a>At TigerStrike Media we build custom WordPress themes.</p>
<p>WordPress Themes are layout files that specify to an Internet browser how to render and display your WordPress website on a computer screen.</p>
<p>There are several ways that users of WordPress can theme their WordPress websites.</p>
<p>WordPress offers thousands of free themes that have been built by the WordPress development community. If you have the time, you can wade through the options at <a href="http://wordpress.org/extend/themes/">WordPress.org</a>.</p>
<p>In my experience, though, the standard of the themes tends to be pretty basic.</p>
<p>After a freebie, you can look at purchasing a premium WordPress theme.</p>
<p>Here you have the choice of different suppliers, such as Woo Themes and Elegant Themes. A WordPress web administrator seeks out a layout they like and they buy the theme off-the-shelf.</p>
<p>Premium themes do cost a modest sum, but more time has been spent in the coding to ensure that they look fantastic on screen.</p>
<p>Finally, WordPress users can opt for a fully-customised WordPress theme built to their specific preferences.</p>
<p>Perhaps a company has a branding, a look and feel, or specific layout requirements that they cannot replicate off-the-shelf. A fully custom WordPress theme, such as the themes created by TigerStrike Media, can solve this issue for users.</p>
<p>The big benefits of a custom WordPress theme include:</p>
<ul>
<li>Nobody else has it. You won&#8217;t head online and see a site like yours pop up.</li>
<li>You can customised every aspect of your layout.</li>
<li>And some WordPress theme developers (such as us) offer after-sale support to ensure you&#8217;re happy with your WordPress theme.</li>
</ul>
<p>If you&#8217;re looking for a custom WordPress theme, built in Australia not offshore, talk to Tiger Strike Media.</p>
<p>You&#8217;ll find us cost-effective and ready to help.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigerstrikemedia.com/custom-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Changes This Year</title>
		<link>http://www.tigerstrikemedia.com/wordpress-changes-this-year/</link>
		<comments>http://www.tigerstrikemedia.com/wordpress-changes-this-year/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 22:57:08 +0000</pubDate>
		<dc:creator>Tiger Strike Media</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress 3.1]]></category>
		<category><![CDATA[Wordpress 3.2]]></category>
		<category><![CDATA[wordpress 3.3]]></category>

		<guid isPermaLink="false">http://www.tigerstrikemedia.com/?p=478</guid>
		<description><![CDATA[It has been a big year for WordPress and although a lot has changed, both on the surface and under...]]></description>
			<content:encoded><![CDATA[<p>It has been a big year for WordPress and although a lot has changed, both on the surface and under the hood, every attempt has been made to ensure that the user experience and the upgrade path remains smooth.</p>
<p>Of course if you have modified core files or plugins then upgrading WordPress is always going to be a nightmare, that is why you should never &#8220;hack&#8221; WordPress or plugin files.</p>
<p>WordPress has had 3 major updates this year with a plethora of new updates and new things to learn.</p>
<h3>WordPress 3.1</h3>
<p>This version of WordPress introduced the first version of the admin bar, which has essentially made redundant things like edit_post_link() by including a static bar at the top of the screen at all times (unless you have turned it off or it has been disabled!) which has useful links to edit the current post, page, category, custom post type, add new ones, or manage users. this can be added to or managed programmatically, which is great for plugin developers to enable easy links to plugin added functionality.</p>
<p>The other big update with this version was post formats which were an easy way to display different types of posts whether it is a quick Facebook like status update or an in depth article in slightly different ways.</p>
<h3>WordPress 3.2</h3>
<p>This version was all about optimizing and cleaning up what was already there. And with this fairly major rework of a lot of the core code, they also updated the admin UI.</p>
<p>WordPress Admin, uploads and general page load time now happen a lot faster with the update in requirements to PHP and MYSQL.</p>
<h3>WordPress 3.3</h3>
<p>The latest and greatest major version update was just released into the wild in December and includes a major revision to the uploading process to incorporate plupload to enable drag and drop uploading to the media uploader.</p>
<h3>Wrap Up</h3>
<p>All up, WordPress is a much leaner, meaner CMS machine than it was this time last year, with all these new updates and things to learn and adapt to it is no wonder that the many users have been overwhelmed this year.</p>
<p>Early talk for WordPress 3.4 is saying that the focus will be on making it easier for you to make your site look the way you want it to. We will be keeping you updated on the progress of the next version when updates become available.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigerstrikemedia.com/wordpress-changes-this-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Death Of IE 7</title>
		<link>http://www.tigerstrikemedia.com/the-death-of-ie-7/</link>
		<comments>http://www.tigerstrikemedia.com/the-death-of-ie-7/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 21:23:15 +0000</pubDate>
		<dc:creator>Tiger Strike Media</dc:creator>
				<category><![CDATA[General News]]></category>

		<guid isPermaLink="false">http://www.tigerstrikemedia.com/?p=435</guid>
		<description><![CDATA[Microsoft have recently announced that they will begin enforcing major version updates to their legacy browsers. The announcement stated that...]]></description>
			<content:encoded><![CDATA[<p>Microsoft have recently announced that they will begin enforcing major version updates to their legacy browsers.</p>
<p>The announcement stated that beginning in January, users on XP will be upgraded to IE8 and users on Vista and 7 will be updated to IE9. One look at the statistics from <a target="_blank" rel="external nofollow" href="http://gs.statcounter.com/#browser_version-ww-monthly-201110-201112-bar" title="Stat Counter">stat counter</a> show that in December and January, the total usage of IE 6 and 7 totals less than 7% worldwide, To me that means that it seems quite feasible to start phasing out support for IE7 in general web development.</p>
<p>Although IE8 does not support all the CSS3 and HTML5 features of modern browsers, it does have much fewer bugs and better support than IE7.</p>
<p>I&#8217;d like to hear your thoughts on the subject in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigerstrikemedia.com/the-death-of-ie-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The State Of The Web In 2012</title>
		<link>http://www.tigerstrikemedia.com/the-state-of-the-web-in-2012/</link>
		<comments>http://www.tigerstrikemedia.com/the-state-of-the-web-in-2012/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 13:29:33 +0000</pubDate>
		<dc:creator>Tiger Strike Media</dc:creator>
				<category><![CDATA[General News]]></category>

		<guid isPermaLink="false">http://www.tigerstrikemedia.com/?p=430</guid>
		<description><![CDATA[Where to begin? Should I start with the technological, social or political news that drastically affects the web we all...]]></description>
			<content:encoded><![CDATA[<p>Where to begin? Should I start with the technological, social or political news that drastically affects the web we all use and enjoy?</p>
<h3>Technological</h3>
<p>The world seems to have picked up the pace with updates and product version releases, Browsers release new versions 3 or 4 times a year ( real browsers that is ), WordPress had 2 major releases this year and many minor versions, iPhones can now understand what you want when you talk to it like a personal assistant, I even saw someone asking what people would like in the specs for CSS4 ( which is completely useless when we as professional web developers must still support old versions of Internet Explorer ).</p>
<p>Microsoft has announced that they will begin forcing upgrades of the dinosaur browser Internet Explorer this year and in fact a quick peek at the statistics provided by StatCounter will tell you that IE7 is almost officially dead.</p>
<p>I agree that technological advancement is necessary and a reasonable pace is a good thing. However, some aspects of web development can become tedious and, time consuming when it becomes near impossible to even log into the administration section of a website without first needing to running through the update and back up procedures or even turn or the computer in the morning without having to restart it due to required updates!</p>
<p>How is a professional web developer supposed to keep up to date when there is barely enough hours in the day to read about the emerging technology, let alone take the time to learn the peculiarities of a particular and intricacies of a brand new system emerging.</p>
<h3>Social</h3>
<p>Well this aspect has surprisingly not taken many strong turns this year, twitter is still the fastest and easiest way to share small fast updates about what is happening around you and Facebook is still the social hub of the inter-webs.</p>
<p>Not really surprising but a big update on the social scene is the emergence of a big corporation &#8220;like&#8221; war, they have invaded on the Facebook and Twitter fronts and are now engaged in a war of followers, likes and how much they can essentially spam the poor soul who clicks the like button!</p>
<h3>Political</h3>
<p>Dare I enter my political views online for fear of being penalized in the face of the disturbing new laws that the powers that be are trying to get passed in the US? Yes, I am talking about the SOPA bill. I won&#8217;t go into detail here but how ridiculous to think that these laws will do anything to stop piracy and not punish those who don&#8217;t have billion dollar law suit budgets.</p>
<p>Although I don&#8217;t live in the US I believe that t shouldn&#8217;t matter where I live, I should have the right to say what I want, where I want without fear of reprisal from the powers that be.</p>
<h3>Wrap up</h3>
<p>A lot has changed this year, and it&#8217;s tough to stay up to date, But Tiger Strike Media has a lot of exciting things in the works for 2012. Let us know in the comments what you would like to see happen Technologically, Socially, or Politically by this time in 2013.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigerstrikemedia.com/the-state-of-the-web-in-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.3</title>
		<link>http://www.tigerstrikemedia.com/wordpress-3-3/</link>
		<comments>http://www.tigerstrikemedia.com/wordpress-3-3/#comments</comments>
		<pubDate>Sun, 14 Aug 2011 08:58:21 +0000</pubDate>
		<dc:creator>Tiger Strike Media</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Basics]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress 3.3]]></category>

		<guid isPermaLink="false">http://www.tigerstrikemedia.com/wordpress-3-3/</guid>
		<description><![CDATA[WordPress 3.3 is underway with a some new features and a continuation of the cleanup they started with the 3.2...]]></description>
			<content:encoded><![CDATA[<p>WordPress 3.3 is underway with a some new features and a continuation of the cleanup they started with the 3.2 release.</p>
<h3>Overview</h3>
<p>Many changes are in the works with around 150 tickets set to be resolved for WordPress 3.3 In the WordPress trac. Most of the tickets are maintenance / optimization and cleanup Tickets with a few little sweeteners thrown in for god measure.</p>
<h3>Plupload</h3>
<p><a title="plupload - The New WordPress Media Uplaoder" href="http://www.plupload.com/" rel="external nofollow" target="_blank">Plupload</a> is pretty much the major ui sweetener in the works for WordPress 3.3 and will completely replace the current media uploader that WordPress uses.</p>
<p>It is a multi platform media uploader and basic management script which can use HTML5, Google gears, Silverlight, Flash, Browserplus or just normal forms! It will mean that the WordPress uploader that is currently in place will become a whole lot more flexible, ditching the flash based uploader currently used in WordPress for a much more robust script capable of pausing  / resuming uploads if something fails and providing progress bar support for more than just flash users.</p>
<h3>Welcome Screen</h3>
<p>This is a generic &#8220;Welcome To WordPress&#8221; screen which will display only when a user has a) Installed wordpress for the first time, or b) A core upgrade has taken place.</p>
<p>This will be able to give users a little more information about the state of the server that WordPress is sitting on, Some information about what has changed and what WordPress can do for you. This ticket is far from finalised, so details are sketchy, but will not be trying to shove too much information back at the user, but simply to say &#8220;Here is what we have, Here is what you have, Now enjoy yourself.&#8221;</p>
<h3>Behind The Scenes</h3>
<p>Under the surface is where the most work will happen in WordPress 3.3, with improvements to the metadata and settings API&#8217;s will make writing advanced themes and plugins a little easier,  IE7 will be deprecated meaning that the CSS will be able to be a bit leaner, permalinks that consist entirely of  /%postname%/ will no longer be a performance hindrance on large sites, Menus may use fly-outs ( sideways Dropdowns ) instead of the click to open different options, these are just the beginning. With around 150 items <a rel="external nofollow" target="_blank" href="http://core.trac.wordpress.org/query?status=accepted&#038;status=assigned&#038;status=closed&#038;status=new&#038;status=reopened&#038;status=reviewing&#038;milestone=3.3&#038;group=status&#038;order=priority">addressed, features added and bugs squished</a>, it is sure to be another solid release for wordpress.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigerstrikemedia.com/wordpress-3-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Is HTML5?</title>
		<link>http://www.tigerstrikemedia.com/what-is-html5/</link>
		<comments>http://www.tigerstrikemedia.com/what-is-html5/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 01:22:38 +0000</pubDate>
		<dc:creator>Tiger Strike Media</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.tigerstrikemedia.com/?p=218</guid>
		<description><![CDATA[Well what the hell is the hype around HTML5 about? Is it supported by the older browsers? Why would I...]]></description>
			<content:encoded><![CDATA[<p>Well what the hell is the hype around HTML5 about? Is it supported by the older browsers? Why would I need it? Keep reading for all the answers to these and more.</p>
<h3>What Is HTML5?</h3>
<p>HTML5 is the latest round of HTML standards to be released by the W3C ( The organisation responsible for trying to keep wen development sane ).</p>
<p>It has a Tonne Of New stuff, generally making web development and maintenance easier , A site using HTML5 will be ( if not officially supported by the search engines yet ) faster and more efficient for a search engine to crawl meaning ¬†a happy googlebot and in theory better saerch engine rankings. Although this will depend on not misleading or spamming the search engines which we all know they just Love.</p>
<h3>Elements</h3>
<p>HTML5 includes a plethora of new elements below are the biggies:</p>
<ul>
<li><strong>Header</strong> &#8211; An element specifically for the top section of a website</li>
<li><strong>Hgroup</strong> &#8211; designed to hold the logo and link back to the home page etc in the header</li>
<li><strong>Nav</strong> &#8211; An element to point out the navigation around the site.</li>
<li><strong>Footer</strong> &#8211; Specifically for the bottom of a webpage</li>
<li><strong>Section</strong> &#8211; An arbitrary section of the page</li>
<li><strong>Article</strong> &#8211; Essentially the content of the page</li>
<li><strong>Video</strong> &#8211; A Self Hosted video ( at this stage, Youtube is not supported, but they do output a html5 player in an iframe )</li>
<li><strong>Audio</strong> &#8211; For those into some music on a webpage</li>
<li><strong>Canvas</strong> &#8211; A tag with some veryspecial properties, this enable dynamic animation and drawing using javascript. it is compatible on Mobile devices and can do almost anything that flash can do!</li>
</ul>
<h3>Browser Compatability</h3>
<p>As with any new emerging technology and standards, this is the kicker for HTML5, Cross browser compatability, or more to the point, Does it work in Internet Explorer?</p>
<p>The short answer is no, HTML5 won&#8217;t work natively in IE less than 9, but there is good news, there is 2 ways around this problem.</p>
<p>1) Javascript &#8211; A small section of javascript will enable the use of these elements in Internet Explorer, but the site is reliant on javascript in those browsers.</p>
<p>2) Chrome Frame &#8211; This is a plugin for Internet Explorerto enable HTML5 and CSS3 as well as a fast JavaScript engine but this relies on the user installing a plugin and Javasacript.</p>
<p>The web is moving on, whether people update their browsers or not. Developing for browsers which are past their use by date is very difficult and time consuming.</p>
<p>HTML5 is something that I like to use extensively on every project and if that means that people who will not upgrade their browsers or at least enable javascript then they are doomed from the start.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigerstrikemedia.com/what-is-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Top 10 Must Use Plugins of 2011</title>
		<link>http://www.tigerstrikemedia.com/top-10-plugins/</link>
		<comments>http://www.tigerstrikemedia.com/top-10-plugins/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 14:53:39 +0000</pubDate>
		<dc:creator>Tiger Strike Media</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Basics]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress development]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.tigerstrikemedia.com/?p=163</guid>
		<description><![CDATA[Well wordpress plugin junkies rejoice, another year is upon us! We don&#8217;t recommend using hundreds of plugins to do useless...]]></description>
			<content:encoded><![CDATA[<p>Well wordpress plugin junkies rejoice, another year is upon us!</p>
<p>We don&#8217;t recommend using hundreds of plugins to do useless things with your wordpress installation, as this inevitably leads to wordpress bloat, too many scripts loaded, external stylesheets, much much more code for the PHP engine to sift through before anything is output to the browser.</p>
<p>We recommend a small handful of actively maintained, well written and documented extensively used plugins to add a power punch to your wordpress site.</p>
<h3>1. Headspace 2</h3>
<p>What is a high quality wordpress installation without a slick, and powerful SEO management plugin.</p>
<p>This Plugin has it all:</p>
<p>Configure Meta Data Individually for:</p>
<ul>
<li>Posts</li>
<li>Pages</li>
<li>Categories</li>
<li>Home page</li>
<li>Author pages</li>
<li>Search pages</li>
<li>404 page</li>
</ul>
<p>You can define:</p>
<ul>
<li>Tags/keywords, with suggested keywords</li>
<li>Descriptions</li>
<li>Page titles</li>
<li>Custom &#8216;more text&#8217;</li>
<li>Site name and site description</li>
<li>Custom themes &#8211; change your theme on each page!</li>
<li>Custom plugins &#8211; load a plugin only on specific pages</li>
<li>Additional CSS and JavaScript files</li>
<li>Noindex and nofollow meta tags</li>
<li>Follow/follow on archive, category, page, tag, and comment links</li>
</ul>
<p>It also allows you to add:</p>
<ul>
<li>Google Analytics</li>
<li>Google Webmaster</li>
<li>Google section targeting</li>
<li>Mint statistic</li>
<li>103bees</li>
<li>Statcounter</li>
<li>CrazyEgg heat map</li>
<li>Feedburner Stats Pro</li>
<li>Apture</li>
<li>Yahoo! Site Explorer</li>
<li>Microsoft Live Verification</li>
<li>HitTail</li>
<li>Piwik tracking</li>
<li>AWStats tracking</li>
</ul>
<p>As well as this more than impressive list of features, it just looks good. You can drag and drop fields to appear on the write post/page page, You can even import data from many of the other popular SEO plugins!</p>
<h3>2. Google XML Sitemap</h3>
<p>This powerful wordpress plugin will generate a google compliant XML sitemap and give you the option to alert google, yahoo, and bing whenever you update your content an absolute MUST have for SEO.</p>
<h3>3. ShareThis</h3>
<p>This plugin is the holy grail of social media bookmarking plugins. with 45 built-in social services, 7 styles of button ranging from Large or small Buttons, Counters, Classic hover popup, you name it, this plugin can do it!</p>
<p>You can add or remove supported services, even tracking and analytics if you register on the sharethis website.</p>
<h3>4.¬†Google Analytics For WordPress</h3>
<p>Juicy analytics. If you need to know what your visitors are doing on your site, where they come from, where they go and what they did, Google analytics is simply unbeatable.</p>
<p>Just signup for an analytics account, grab your ID number and you are good to go.</p>
<h3>5. w3 Total Cache</h3>
<p>Why should your users wait while your server digs through the database and generates the HTML page to serve out?</p>
<p>This plugin, apart from having TONNES of options, will essentially generate a static HTML page to serve your website visitors. As well as having the options to enable GZIP compression of your content this will make a sluggish blog run fast and smooth.</p>
<p>The options page can be a nightmare to navigate if you don&#8217;t really know what you are looking at, but once it is correctly configured, it will significantly reduce page load times, server load and that reduces your bounce rate from digg!</p>
<h3>6. WP-DB Manager</h3>
<p>This great little wordpress plugin is great for backing up your website. It has many functions such as managing, optimising, repairing database tables without having to access PHPmyadmin as well as having the ability to email out a copy of the entire Wp database at a set interval.</p>
<h3>7. Wp-PageNavi</h3>
<p>Simple, easy to manage and a great array of options, Page navigation is great for SEO, Usability and being able to find that old post that you wanted to edit.</p>
<h3>8. Gravity Forms</h3>
<p>As much as I wanted to keep this list to the free plugins, if you are going to be dealing with complex data, large multi part forms, etc etc, you are going to need this plugin, it is well worth the investment over the free ones that are full of bugs, poor code and poor management options.</p>
<h3>9. Shopp</h3>
<p>Again, not a freebie, but the poor code or ultra basic feature sets of the free e-commerce plugins are a joke. If you value your Hair, Sanity, Time and having a¬†properly¬†working website at the end of it, you just cant pass up this beautifully well written e-commerce plugin.</p>
<h3>10. Capability Manager</h3>
<p>One of the major shortcomings in a default wordpress install is a solid capability manager, this plugin more than makes up for that.</p>
<p>Easy to use, add roles or capabilities, change / modify / delete existing roles, add capabilities, this plugin makes user role / capability management an absolute breeze.</p>
<h3>Wrap Up</h3>
<p>These plugins will supercharge your wordpress installation into a powerful, SEO¬†optimised¬†, Social networking, CMS system. Far and away from the basic wordpress installation.</p>
<p>Remember never use more plugins than you have to and always keep them updated along with your wordpress file.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigerstrikemedia.com/top-10-plugins/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress 3.1</title>
		<link>http://www.tigerstrikemedia.com/wordpress-3-1/</link>
		<comments>http://www.tigerstrikemedia.com/wordpress-3-1/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 11:11:48 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress 3.1]]></category>
		<category><![CDATA[wordpress development]]></category>

		<guid isPermaLink="false">http://www.tigerstrikemedia.com/?p=128</guid>
		<description><![CDATA[Well The latest release of wordpress is due out any day now. They have released the Second Release Candidate and...]]></description>
			<content:encoded><![CDATA[<p>Well The latest release of wordpress is due out any day now. They have released the Second Release Candidate and it looks pretty nice.</p>
<p>The Biggest things in this release are a global admin bar, ajaxified admin screens and post formats.</p>
<h3>Post Formats</h3>
<p>These are simply additional meta information attached to each post. These will mean that displaying each post in a list, say the home page of a blog style site , the archives list page or the Blog page just to pick a few possible examples will be a very simple process. As simple as a single line of code to differentiate between a &#8220;video&#8221; , &#8220;Gallery&#8221; , or short facebook/twitter style this means that to achieve this functionality will mean no more using categories or custom post meta for unnesessary purposes.</p>
<h3>Global Admin Bar</h3>
<p>If you have used the wordpress.com service you will have noticed that at the top of the page is a grey navigation bar allowing you to move around to the edit post page, dashboard etc these options will change depending on the user level.</p>
<p>For example:</p>
<p>A User Logged in as the site administrator  might see the following link structure as a dropdown menu.</p>
<ul>
<li>Admin
<ul>
<li>Edit Profile</li>
<li>Dashboard</li>
<li>Logout</li>
</ul>
</li>
<li>Add New
<ul>
<li>Post</li>
<li>Page</li>
<li>Any Custom Post Types</li>
</ul>
</li>
<li>Comments</li>
<li>Appearance
<ul>
<li>Widgets</li>
<li>Menus</li>
</ul>
</li>
</ul>
<p>Where A Subscriber might see something more like this:</p>
<ul>
<li>Admin
<ul>
<li>Edit Profile</li>
<li>Dashboard</li>
<li>Logout</li>
</ul>
</li>
</ul>
<p>All They could do on the dashboard is edit their profile anyway.</p>
<h3>Admin Ajax</h3>
<p>This makes administering the site a little faster and a little simpler.</p>
<p>It means that sorting, searching or navigating pages, posts, plugins, themes etc will all be easier, faster and less draining on your host as wordpress is not loading the entire page to sort through the list of posts.</p>
<p>Neat little upgrade and entirely on the administration side of things.</p>
<h3>Wrap-Up</h3>
<p>Apart from these major updates, there has been a myriad of minor updates inluding admin CSS cleanup, database querying, updating the included version of jQuery to the latest version, updates to TinyMCE (The WYSIWG editor on posts and pages) and much more. Full Details can be seen on the <a href="http://codex.wordpress.org/Version_3.1" rel="nofollow">wordpress codex</a>.</p>
<p>It certainly is a step forward for wordpress for usability, reliability and speed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigerstrikemedia.com/wordpress-3-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

