<?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>Interactive Llama :: Interactive media tutorials and tips &#187; upgrade</title>
	<atom:link href="http://www.interactivellama.com/blog/archives/tag/upgrade/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.interactivellama.com/blog</link>
	<description>Interactive media tutorials and tips</description>
	<lastBuildDate>Wed, 23 Nov 2011 15:25:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
		<item>
		<title>Change media and images to full size in WordPress media gallery</title>
		<link>http://www.interactivellama.com/blog/archives/change-media-and-images-to-full-size-in-wordpress-media-gallery/</link>
		<comments>http://www.interactivellama.com/blog/archives/change-media-and-images-to-full-size-in-wordpress-media-gallery/#comments</comments>
		<pubDate>Thu, 22 May 2008 00:15:09 +0000</pubDate>
		<dc:creator>Stephen James</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[HTML and CSS]]></category>
		<category><![CDATA[Productivity & Workflow]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[image width]]></category>
		<category><![CDATA[maximum image size]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plug_in]]></category>
		<category><![CDATA[Rachel Steely]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">/blog/?p=122</guid>
		<description><![CDATA[I&#8217;ve been familiarizing myself with WordPress 2.5&#8242;s new media gallery. If you&#8217;ve visited my blog before, you know I don&#8217;t upload many images, but I&#8217;m hoping to upload many images to my wife, Rachel Steely&#8217;s website. I was annoyed to find out that the default image posting size is medium (which is about 300px). On [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been familiarizing myself with WordPress 2.5&#8242;s new media gallery. If you&#8217;ve visited my blog before, you know I don&#8217;t upload many images, but I&#8217;m hoping to upload many images to my wife, <a href="http://www.rachelsteely.com">Rachel Steely&#8217;s website</a>. I was annoyed to find out that the default image posting size is medium (which is about 300px). On top of that, if you select full size, it doesn&#8217;t mean full size. It means your WordPress theme&#8217;s column width. So unless you are using Kubrick your media size will not be your column width.<span id="more-122"></span></p>
<p><strong>Change Full Size image width to match theme</strong></p>
<p>The column width in WordPress&#8217;s default theme Kubrick is 500px. Therefore, the default (maximum) image size is 500px. The column width of the blog I am posting to is 614px. You can set a global variable to change this setting. Create if not already existing functions.php in your theme directory. Define your maximum media width (that is &#8220;Full Size&#8221; in the Gallery interface):<br />
<code><br />
&lt;?php<br />
$content_width = 614;<br />
?&gt;</code></p>
<p>I&#8217;ve set mine to 614 pixels since that is the width of my div with the class  &#8220;.entry&#8221; minus padding. If this does not work, some have solved this problem with $GLOBALS['content_width'] = 614; also. You can view this setting at a post at <a href="http://www.rachelsteely.com/blog/photos-from-wheeler-spring-open-house/">RachelSteely.com</a>.</p>
<p><strong>Default media to Full Size</strong></p>
<p>I prefer to justify my media (align left and right) to the column width. To do this, set default selected size to &#8220;Full Size&#8221; by changing the code in /wp-admin/includes/media.php. Move the &#8216;checked&#8217; radio attribute from Medium to Full Size.</p>
<p>Line 458:<br />
<code><br />
" : '' ) . "&lt;input type='radio' name='attachments[$post-&gt;ID][image-size]' id='image-size-medium-$post-&gt;ID' value='medium' checked='checked' /&gt;<br />
&lt;label for='image-size-medium-$post-&gt;ID'&gt;" . __('Medium') . "&lt;/label&gt;<br />
&lt;input type='radio' name='attachments[$post-&gt;ID][image-size]' id='image-size-full-$post-&gt;ID' value='full' /&gt;<br />
</code></p>
<p>change to<br />
<code><br />
" : '' ) . "&lt;input type='radio' name='attachments[$post-&gt;ID][image-size]' id='image-size-medium-$post-&gt;ID' value='medium' /&gt;<br />
&lt;label for='image-size-medium-$post-&gt;ID'&gt;" . __('Medium') . "&lt;/label&gt;<br />
&lt;input type='radio' name='attachments[$post-&gt;ID][image-size]' id='image-size-full-$post-&gt;ID' value='full' checked='checked' /&gt;</code></p>
<p>And that&#8217;s it! Happy uploading with the new and improved (and customized) WordPress media gallery.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interactivellama.com/blog/archives/change-media-and-images-to-full-size-in-wordpress-media-gallery/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Upgrading a blog to WordPress 2.3 and changing your Ultimate Tag Warrior tags</title>
		<link>http://www.interactivellama.com/blog/archives/upgrading-a-blog-to-wordpress-23-ultimate-tag-warrior-tagging-tags/</link>
		<comments>http://www.interactivellama.com/blog/archives/upgrading-a-blog-to-wordpress-23-ultimate-tag-warrior-tagging-tags/#comments</comments>
		<pubDate>Wed, 05 Dec 2007 21:28:12 +0000</pubDate>
		<dc:creator>Stephen James</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[23]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[plug_ins]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[tag_cloud]]></category>
		<category><![CDATA[template_tags]]></category>
		<category><![CDATA[things]]></category>
		<category><![CDATA[ultimate_tag_warrior]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp]]></category>
		<category><![CDATA[wp_tag_cloud]]></category>

		<guid isPermaLink="false">/blog/archives/upgrading-a-blog-to-wordpress-23-ultimate-tag-warrior-tagging-tags/</guid>
		<description><![CDATA[I upgraded the poetry knook today from WordPress 2.1.3 to 2.3. Including backing up the database and user files, the process took about an hour. Be sure to follow the upgrade steps (in order!). I have heard that logging into administration during an upgrade can cause problems. WordPress 2.3, which was released back in September, [...]]]></description>
			<content:encoded><![CDATA[<p>I upgraded <a href="http://www.tpkpoetry.com/">the poetry knook</a> today from WordPress 2.1.3 to 2.3. Including backing up the database and user files, the process took about an hour. Be sure to follow the upgrade steps (in order!). I have heard that logging into administration during an upgrade can cause problems.</p>
<p><a href="http://www.wordpress.org/download/">WordPress 2.3</a>, which was released back in September, includes among other things: a native tag system, plug-in and platform upgrade notification, post management interface improvements, roll your own dashboard, and roll your own RSS libraries. Many of these items have been addressed by plug-ins. Tagging especially comes to mind. I love <a href="http://lorelle.wordpress.com/2005/10/23/the-ultimate-tag-warrior-wordpress-plugin/">Ultimate Tag Warrior</a> and use it on all my blogs.<span id="more-113"></span></p>
<p>But I have to say goodbye to Ultimate Tag Warrior  (well, not really, I hear there&#8217;s a <a href="http://www.metlin.org/2007/10/04/wordpress-23-other-upgrades/">UTW hack compatible with WordPress 2.3</a>), because, as in all platforms, the best third party features eventually get implemented by the parent company. I recommending reading, <a href="http://www.lifespy.com/2007/how-to-switch-from-ultimate-tag-warrior-to-wordpress-23-tagging/">How to Switch from Ultimate Tag Warrior to WordPress 2.3 Tagging</a>, if you currently use Ultimate Tag Warrior and are upgrading to 2.3. I still had errors and installed <a href="http://www.neato.co.nz/wordpress-things/utw-theme-compatibility-thing/">UTW Theme Compatibility Thing</a> but it did not work for me in listed related posts. For my related posts, I installed <a href="http://fairyfish.net/2007/09/12/wordpress-23-related-posts-plugin/">WordPress 2.3 Related Posts Plugin</a>, since I couldn&#8217;t get UTW&#8217;s related posts tag to work.</p>
<p>As for mass editing and management of tags in WP 2.3, I am liking the features of <a href="http://www.herewithme.fr/wordpress-plugins/simple-tags">Simple Tags</a>. I have not used their tag clouds and related posts features however.</p>
<p>I think it took about as long to install WP 2.3 as it did to write this post, so check your plug-ins&#8217; compatibility and then upgrade!</p>
<p>CUSTOM THEME NOTES:</p>
<p>Sounds easy doesn&#8217;t it? Well, not exactly if you use a customized blog and do not just download an upgrade ready-to-wear theme. You will need to change out all your UTW tags to <a href="http://codex.wordpress.org/Template_Tags#Tag_tags">WordPress tags</a> (at the time of posting, this wiki is incomplete). Below are specific items I had issues with when upgrading:</p>
<ul>
<li>Be sure to update your tags.php with <a href="http://codex.wordpress.org/Template_Tags/wp_tag_cloud">the native WP tags</a> instead of the UTW tags&#8211;although with the <a href="http://www.neato.co.nz/wordpress-things/utw-theme-compatibility-thing/">UTW Theme Compatibility Thing</a> plug-in, you should be able get away with not changing these tags. There are no where near as many options with the native tags, so you may have to change the format of the tags in your blog.</li>
<li>I have had problems with the <a href="http://www.dagondesign.com/articles/sitemap-generator-plugin-for-wordpress/">Dagon Design Sitemap Generator</a> plug-in since the category database schema has changes. Update to the latest version to fix this.</li>
<li>Unlike UTW&#8217;s use of the tag.php for listing posts filed under a tag. The native tagging system of WordPress 2.3 uses the archive.php (just like viewing a category). Takes a glance at the code of /wp-content/themes/default/archive.php in order to customize your &#8220;Posts Tagged with ????&#8221; pages. It took me a while to figure this out in my customized themes.</li>
<li>I suggest creating a mod_rewrite entry in your .htaccess similar to &#8220;RewriteRule ^tag/(.+)$ http://www.example.com/archives/tag/$1/ [R=301,L]&#8220;, since tags will now be under the URL set for permalinks in the Options menu (e.g.- http://www.example.com/archives/tag/)</li>
<li>According to the <a href="http://codex.wordpress.org/Version_2.3">Wp 2.3 ChangeLog</a>, there are deprecated functions you will need to update in your template. Template tag permalink_link() has been deprecated in favor of the_permalink(); permalink_single_rss() has been deprecated in favor of the_permalink_rss().</li>
<li>I like to use variable font sizes (i.e.- &#8216;em&#8217; instead of &#8216;pt&#8217;) for accessibility issues. The WordPress 2.3 tag, wp_tag_cloud, has problems with the unit, &#8216;em.&#8217; Use &#8216;smallest=1&amp;largest=1.01&amp;unit=em&#8217; for the parameter to keep all the tags the same size.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.interactivellama.com/blog/archives/upgrading-a-blog-to-wordpress-23-ultimate-tag-warrior-tagging-tags/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

