<?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>Seja Design</title>
	<atom:link href="http://wordpress.seja-design.com.au/feed/" rel="self" type="application/rss+xml" />
	<link>http://wordpress.seja-design.com.au</link>
	<description>WordPress Templates</description>
	<lastBuildDate>Mon, 30 Jan 2012 09:07:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Two more really useful shortcode hacks</title>
		<link>http://wordpress.seja-design.com.au/2011/02/two-more-really-useful-shortcode-hacks/</link>
		<comments>http://wordpress.seja-design.com.au/2011/02/two-more-really-useful-shortcode-hacks/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 09:58:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[shortcode]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://wordpress.seja-design.com.au/?p=421</guid>
		<description><![CDATA[We&#8217;re going to look at a simple way to add Facebook &#8220;like&#8221; buttons and embed YouTube videos into content, both of which use iframes and in both cases I&#8217;ve used the defaults but support for variations is included in the &#8230; <a href="http://wordpress.seja-design.com.au/2011/02/two-more-really-useful-shortcode-hacks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re going to look at a simple way to add Facebook &#8220;like&#8221; buttons and embed YouTube videos into content, both of which use iframes and in both cases I&#8217;ve used the defaults but support for variations is included in the code.</p>
<p>The Facebook &#8220;like&#8221; button really only needs to know what page you&#8217;re on now which we obtain using  <strong>urlencode(get_permalink($post-&gt;ID))</strong> and insert it into the standard Facebook code. You will see that I&#8217;ve also allowed variables for all the options within the Facebook Like code.</p>
<pre>// facebook like

function facebook_like($atts) {
 extract(shortcode_atts(array(
 'layout' =&gt; 'standard',
 'width' =&gt; '450',
 'height' =&gt; '25',
 'faces' =&gt; 'false',
 'colorscheme' =&gt; 'light',
 'action' =&gt; 'like',
 ), $atts));

 return "&lt;iframe src=\"http://www.facebook.com/plugins/like.php?href=" . urlencode(get_permalink($post-&gt;ID)) . "&amp;amp;layout=" . $layout . "&amp;amp;show_faces=" . $faces . "&amp;amp;width=" . $width . "&amp;amp;action=" . $action . "&amp;amp;colorscheme=" . $colorscheme . "\" scrolling=\"no\" frameborder=\"0\" allowTransparency=\"true\" style=\"border:none; overflow:hidden; width:" . $width . "px; height:" . $height . "px\"&gt;&lt;/iframe&gt;";
}
add_shortcode('facebook', 'facebook_like');</pre>
<p>Using Facebook Like shortcode on your WordPress site</p>
<p>YouTube also uses an iframe to support embedding. I&#8217;m going to use the newer version of embedding because it&#8217;s simpler to implement but more powerful in the way it approaches video playback, favouring HTML5 video support but falling back to Flash if that&#8217;s unavailable.<br />
For more details see the <a href="http://apiblog.youtube.com/2010/07/new-way-to-embed-youtube-videos.html">YouTube Blog</a></p>
<pre>// youtube video

function youtube_embed($atts) {
 extract(shortcode_atts(array(
 'embed' =&gt; '',
 'width' =&gt; '480',
 'height' =&gt; '390',
 ), $atts));

 return "&lt;iframe title=\"YouTube video player\" class=\"youtube-player\" type=\"text/html\" width=\"" . $width . "\" height=\"" . $height . "\" src=\"http://www.youtube.com/embed/" . $embed . "\" frameborder=\"0\" allowFullScreen&gt;&lt;/iframe&gt;";
}
add_shortcode('youtube', 'youtube_embed');</pre>
<p>Using YouTube embed shortcode on your WordPress site</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wordpress.seja-design.com.au/2011/02/two-more-really-useful-shortcode-hacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shortcode in custom sidebar widget</title>
		<link>http://wordpress.seja-design.com.au/2010/10/shortcode-in-custom-sidebar-widget/</link>
		<comments>http://wordpress.seja-design.com.au/2010/10/shortcode-in-custom-sidebar-widget/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 08:24:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://wordpress.seja-design.com.au/?p=333</guid>
		<description><![CDATA[I keep saying that WordPress makes a great CMS because of it&#8217;s ease of use and great flexibility, especially with all the great plugins that are available for it. However the disadvantage of using too many plugins is that, as &#8230; <a href="http://wordpress.seja-design.com.au/2010/10/shortcode-in-custom-sidebar-widget/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I keep saying that WordPress makes a great CMS because of it&#8217;s ease of use and great flexibility, especially with all the great plugins that are available for it. However the disadvantage of using too many plugins is that, as you start to extend WordPress, you reduce the simplicity of it.</p>
<p>It is because of this that I&#8217;ve started to write custom functions that are embedded into the themes that I create. One of the plugins I replaced was a sidebar text widget that I used for creating custom sidebar text on a per post basis.<br />
The only problem with it was that it created a link within the Custom Fields section which didn&#8217;t work as expected so you&#8217;d have to scroll down to the bottom of the editor and add it in. Confusing, it was!</p>
<p>Instead I created my own Custom Fields, disabling the WordPress defaults, based largely on the work of <a href="http://sltaylor.co.uk/blog/control-your-own-wordpress-custom-fields/">Steve Taylor</a>.</p>
<p>Two of the fields are designed for custom sidebar text so the next process was to register widgets however because they need to get data from a post or page I needed to tell the widget what the post ID is.</p>
<p>After a lot of Googling and even more trial and error I realised that the only way I was going to get the ID into the function was to make it a global which worked beautifully&#8230;</p>
<pre>function sidebar1() {
 echo '&lt;div id="SidebarText1"&gt;';
 echo get_post_meta($GLOBALS['current_id'], '_sejaWP_sidebar_text_1', true);
 echo '&lt;/div&gt;';
}
register_sidebar_widget(__('Side Text 1'), 'sidebar1');</pre>
<p>Until I needed to add some shortcode to make a <a href="http://wordpress.seja-design.com.au/2010/09/extending-custom-menus/">custom menu</a> work</p>
<p>Googling <em>shortcode in widgets</em> returns a whole lot of posts that tell you to place the following code in the functions.php file</p>
<pre><code>add_filter('widget_text', 'do_shortcode');</code></pre>
<p>But this simply wasn&#8217;t working for me, probably because of the Globals variable call but thankfully one of the many articles led me to Stephanie Leary&#8217;s article <a href="http://sillybean.net/wordpress/content/using-shortcodes-everywhere/">Using Shortcodes Everywhere</a> which introduced me to other possibilities.</p>
<p>The updated widget now uses do_shortcode which is designed for use directly within a theme (which I guess in a way it is!)</p>
<pre>function sidebar1() {
 echo '&lt;div id="SidebarText1"&gt;';
 echo do_shortcode(get_post_meta($GLOBALS['current_id'], '_sejaWP_sidebar_text_1', true));
 echo '&lt;/div&gt;';
}
register_sidebar_widget(__('Side Text 1'), 'sidebar1');</pre>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wordpress.seja-design.com.au/2010/10/shortcode-in-custom-sidebar-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Gallery</title>
		<link>http://wordpress.seja-design.com.au/2010/09/temp/</link>
		<comments>http://wordpress.seja-design.com.au/2010/09/temp/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 15:47:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://wordpress.seja-design.com.au/?p=278</guid>
		<description><![CDATA[[flashgallery img='2010/09/temp'] I have used an freely available flash gallery that extracts images from a folder, this is a great solution as it doesn&#8217;t involve the editing of an XML file which, although is not complicated, does add an extra &#8230; <a href="http://wordpress.seja-design.com.au/2010/09/temp/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>[flashgallery img='2010/09/temp']</p>
<p>I have used an freely available flash gallery that extracts images from a folder, this is a great solution as it doesn&#8217;t involve the editing of an XML file which, although is not complicated, does add an extra learning curve to clients wishing to utilise such a solution.</p>
<p>I have added a simple shortcode into the functions.php file which facilitates the scripting and calls on the image folder location and am using a plugin that allows for further categorising of image uploads (<a href="http://wordpress.org/extend/plugins/custom-upload-dir/">Custom Upload Dir</a>).</p>
<p>The only drawback is that WordPress, by default, creates multiple images when you upload files so I will need to find a solution to that as ideally I don&#8217;t want to be using FTP.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wordpress.seja-design.com.au/2010/09/temp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sticky Posts</title>
		<link>http://wordpress.seja-design.com.au/2010/09/sticky-posts/</link>
		<comments>http://wordpress.seja-design.com.au/2010/09/sticky-posts/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 18:04:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://wordpress.seja-design.com.au/?p=225</guid>
		<description><![CDATA[The main purpose of this site is as a testing bed for templates in construction. Because of this, the appearance of this site changes regularly. This post is a great example of a Sticky Post. Sticky posts are posts that &#8230; <a href="http://wordpress.seja-design.com.au/2010/09/sticky-posts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>The main purpose of this site is as a testing bed for templates in construction. Because of this, the appearance of this site changes regularly.</strong></p>
<h3 style="padding-left: 30px;"><em>This post is a great example of a Sticky Post.</em></h3>
<p>Sticky posts are posts that you want to remain prominent and, when published, will remain at the top of your posts. They&#8217;re also very easy to create too.</p>
<p>Once you&#8217;ve written your post you can click on the <em>Visibility</em> options in the right hand <em>Publish</em> tab and tick the &#8220;<em>Stick this post to the front page</em>&#8221; checkbox. For previously published posts you can also select &#8220;<em>Make this post sticky</em>&#8221; using the quick edit option on your Posts menu</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wordpress.seja-design.com.au/2010/09/sticky-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extending Custom Menus</title>
		<link>http://wordpress.seja-design.com.au/2010/09/extending-custom-menus/</link>
		<comments>http://wordpress.seja-design.com.au/2010/09/extending-custom-menus/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 05:03:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[menu]]></category>

		<guid isPermaLink="false">http://wordpress.seja-design.com.au/?p=212</guid>
		<description><![CDATA[Custom Menus in WordPress 3 are great. They allow for easy drag and drop to create custom menu structures. Custom menus can be found by going to Appearance &#62; Menus The current default template, Twenty Ten, only uses one custom &#8230; <a href="http://wordpress.seja-design.com.au/2010/09/extending-custom-menus/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Custom Menus in WordPress 3 are great. They allow for easy drag and drop to create custom menu structures. Custom menus can be found by going to Appearance &gt; Menus</p>
<p>The current default template, Twenty Ten, only uses one custom menu. Here we&#8217;re going to do two things &#8211; Firstly we&#8217;re going to extend the number of menu&#8217;s you can use and secondly we&#8217;re going to create some shortcode so we can drop our menu&#8217;s right into a post, page or sidebar widget.</p>
<p>Open up the functions.php file in your editor and go to the register_nav_menus array around line 99</p>
<pre>register_nav_menus( array(
 'primary' =&gt; __( 'Primary Navigation', 'twentyten' ),
 ) );</pre>
<p>Now add additional menus into the array</p>
<pre>register_nav_menus( array(
 'primary' =&gt; __( 'Primary Navigation', 'twentyten' ),
 'menu-one' =&gt; __( 'Menu One', 'twentyten' ),
 'menu-two' =&gt; __( 'Menu Two', 'twentyten' ),
 'menu-three' =&gt; __( 'Menu Three', 'twentyten' ),
 ) );</pre>
<p>That&#8217;s it &#8211; We now have our additional menu&#8217;s</p>
<p>The next stage is to call on these new menu&#8217;s. Traditionally that means embedding code within our template like so -</p>
<pre>&lt;?php wp_nav_menu(  array( 'theme_location' =&gt; 'menu-one' ));  ?&gt;
</pre>
<p>Instead we&#8217;re going to further add to our functions.php file and convert this into shortcode that can be used anywhere in WordPress and I found a great example of how to do this here &#8211; <a href="http://www.cozmoslabs.com/2010/06/28/wp_nav_menu-shortcode/">http://www.cozmoslabs.com/2010/06/28/wp_nav_menu-shortcode/</a></p>
<pre>
<pre>// Function that will return our WordPress menu
function list_menu($atts, $content = null) {
	extract(shortcode_atts(array(
		'menu'            =&gt; '',
		'container'       =&gt; 'div',
		'container_class' =&gt; '',
		'container_id'    =&gt; '',
		'menu_class'      =&gt; 'menu',
		'menu_id'         =&gt; '',
		'echo'            =&gt; true,
		'fallback_cb'     =&gt; 'wp_page_menu',
		'before'          =&gt; '',
		'after'           =&gt; '',
		'link_before'     =&gt; '',
		'link_after'      =&gt; '',
		'depth'           =&gt; 0,
		'walker'          =&gt; '',
		'theme_location'  =&gt; ''),
		$atts));

	return wp_nav_menu( array(
		'menu'            =&gt; $menu,
		'container'       =&gt; $container,
		'container_class' =&gt; $container_class,
		'container_id'    =&gt; $container_id,
		'menu_class'      =&gt; $menu_class,
		'menu_id'         =&gt; $menu_id,
		'echo'            =&gt; false,
		'fallback_cb'     =&gt; $fallback_cb,
		'before'          =&gt; $before,
		'after'           =&gt; $after,
		'link_before'     =&gt; $link_before,
		'link_after'      =&gt; $link_after,
		'depth'           =&gt; $depth,
		'walker'          =&gt; $walker,
		'theme_location'  =&gt; $theme_location));
}
//Create the shortcode
add_shortcode("listmenu", "list_menu");</pre>
</pre>
<p>To use this shortcode within a post</p>
<pre>&#91;listmenu menu=Menuname menu_class=menu-one&#93;
</pre>
<p>This works particularly well in conjunction with the side content plugin, allowing custom indexes for child pages within the sidebar.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wordpress.seja-design.com.au/2010/09/extending-custom-menus/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cool use for secondary sidebar widget</title>
		<link>http://wordpress.seja-design.com.au/2010/09/cool-use-for-secondary-sidebar-widget/</link>
		<comments>http://wordpress.seja-design.com.au/2010/09/cool-use-for-secondary-sidebar-widget/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 04:09:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://wordpress.seja-design.com.au/?p=209</guid>
		<description><![CDATA[I&#8217;m really liking some of the features in WordPress 3. As someone who writes WordPress templates for clients to use as a CMS, this version has gone a long way to make it even easier. Because most of my WordPress &#8230; <a href="http://wordpress.seja-design.com.au/2010/09/cool-use-for-secondary-sidebar-widget/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m really liking some of the features in WordPress 3. As someone who writes WordPress templates for clients to use as a CMS, this version has gone a long way to make it even easier.</p>
<p>Because most of my WordPress installs are for commercial sites I tend to set them up with focus on writing pages rather than posts. Posts become great as &#8220;Latest News&#8221; style pages.</p>
<p>One of the things that makes this even easier is secondary widgets in the sidebar. Essentially this allows us to use the primary widget area to place additional content across the whole site and focuses the secondary widget area to focus on posts.</p>
<p>What this means is you can have your search bar or custom text that appears on every page but target blog specific items, such as calendars, tag clouds and archive links to posts only.</p>
<p>This is done by slightly modifying the secondary widget code in the sidebar.php file</p>
<p>As I want the secondary widget area to only display in posts I&#8217;m going  to use the is_page conditional tag to do this. You should find the  following code around line 45 on the sidebar.php page</p>
<pre>&lt;?php
 // A second sidebar for widgets, just because.
 if ( is_active_sidebar( 'secondary-widget-area' ) ) : ?&gt;</pre>
<p>Modify the above code so it looks like this</p>
<pre>&lt;?php
 // A second sidebar for widgets, just because.
 if ( !is_page() &amp;&amp; ( is_active_sidebar( 'secondary-widget-area' ) ) ) : ?&gt;</pre>
<p>Secondary widgets will now display ONLY on the posts page &#8211; Simple, huh!</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wordpress.seja-design.com.au/2010/09/cool-use-for-secondary-sidebar-widget/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Comment Spam in image posts</title>
		<link>http://wordpress.seja-design.com.au/2010/07/comment-spam-in-image-posts/</link>
		<comments>http://wordpress.seja-design.com.au/2010/07/comment-spam-in-image-posts/#comments</comments>
		<pubDate>Sat, 31 Jul 2010 15:03:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hints and Tips]]></category>

		<guid isPermaLink="false">http://wordpress.seja-design.com.au/?p=187</guid>
		<description><![CDATA[When you create a gallery page, WordPress automatically creates a separate page for each image. If you&#8217;re using the lightbox plugin you do not see this page but that doesn&#8217;t mean it&#8217;s not accessible. A trick by spammers is to &#8230; <a href="http://wordpress.seja-design.com.au/2010/07/comment-spam-in-image-posts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When you create a gallery page, WordPress automatically creates a separate page for each image. If you&#8217;re using the lightbox plugin you do not see this page but that doesn&#8217;t mean it&#8217;s not accessible.</p>
<p>A trick by spammers is to use this page to add comment spam because, if comments are enabled by default (which is usually the case with WordPress installations), then comments will be available on these gallery posts and there is no way to turn them off.</p>
<p>To avoid having comments in these media posts it is recommended to have comments disabled on all posts. You can then initialise comments on individual posts on an &#8220;as required&#8221; basis.</p>
<p>Unfortunately this doesn&#8217;t help you if you&#8217;re already being spammed in this manner. WordPress forums were not much help as they suggest that you disable comments then delete and rebuild the gallery which, quite frankly, is a poor solution.</p>
<p>If you&#8217;re technically minded and not afraid to tackle the database from the back-end then it&#8217;s actually very easy to solve this problem.</p>
<p>Firstly you need to know what the galley entry is called. If you&#8217;re recieving moderate notification emails the information is already provided</p>
<p style="padding-left: 30px;">A new comment on the post &#8220;Chrysanthemum&#8221; is waiting for your approval<br />
<a href="../2009/11/lightbox/chrysanthemum/">http://wordpress.seja-design.com.au/2009/11/lightbox/chrysanthemum/</a></p>
<p>Knowing now that the post is called Chrysanthemum we can now log into phpMyAdmin (available from your cPanel if we&#8217;re hosting your website), navigate to your WordPress database and open up the  wp_posts table to locate the offending post</p>
<p><a href="http://wordpress.seja-design.com.au/wp-content/uploads/2010/07/phpmyadmin-commentspam.jpg" rel="lightbox[187]" title="phpmyadmin-commentspam"><img class="alignnone size-medium wp-image-188" title="phpmyadmin-commentspam" src="http://wordpress.seja-design.com.au/wp-content/uploads/2010/07/phpmyadmin-commentspam-300x96.jpg" alt="" width="300" height="96" /></a></p>
<p>Click on the edit (pencil) icon and change the comment_status field from &#8220;open&#8221; to &#8220;closed&#8221;. Click Go and the change has been made. You can then repeat this process on other offending pages.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wordpress.seja-design.com.au/2010/07/comment-spam-in-image-posts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>another image test &#8211; separate images?</title>
		<link>http://wordpress.seja-design.com.au/2009/11/another-image-test-separate-images/</link>
		<comments>http://wordpress.seja-design.com.au/2009/11/another-image-test-separate-images/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 07:16:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://wordpress.seja-design.com.au/?p=46</guid>
		<description><![CDATA[Image entered and preconfigured to work with lightbox A medium size image Same as before &#8211; entered in the same way with the intention of editing afterwards. Footnote: edit was successful so image interacts with Lightbox as per the first &#8230; <a href="http://wordpress.seja-design.com.au/2009/11/another-image-test-separate-images/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.seja-design.com.au/wp-content/uploads/2009/11/Penguins.jpg" rel="lightbox[46]" title="Penguins"><img class="alignnone size-thumbnail wp-image-43" title="Penguins" src="http://wordpress.seja-design.com.au/wp-content/uploads/2009/11/Penguins-150x150.jpg" alt="Penguins" width="150" height="150" /></a><br />
Image entered and preconfigured to work with lightbox<br />
<img class="alignnone size-medium wp-image-38" title="Tulips" src="http://wordpress.seja-design.com.au/wp-content/uploads/2009/11/Tulips-300x225.jpg" alt="Tulips" width="300" height="225" /><br />
A medium size image<br />
<a href="http://wordpress.seja-design.com.au/wp-content/uploads/2009/11/Tulips.jpg" rel="lightbox[46]" title="Tulips"><img class="alignnone size-medium wp-image-38" title="Tulips" src="http://wordpress.seja-design.com.au/wp-content/uploads/2009/11/Tulips-300x225.jpg" alt="Tulips" width="180" height="135" /></a><br />
Same as before &#8211; entered in the same way with the intention of editing afterwards.<br />
Footnote: edit was successful so image interacts with Lightbox as per the first image</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wordpress.seja-design.com.au/2009/11/another-image-test-separate-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>lightbox</title>
		<link>http://wordpress.seja-design.com.au/2009/11/lightbox/</link>
		<comments>http://wordpress.seja-design.com.au/2009/11/lightbox/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 06:56:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://wordpress.seja-design.com.au/?p=33</guid>
		<description><![CDATA[Testing the lightbox plugin, using some default images from Windows 7 Default WordPress Gallery]]></description>
			<content:encoded><![CDATA[<p>Testing the lightbox plugin, using some default images from Windows 7</p>
<p>Default WordPress Gallery<br />

<a href='http://wordpress.seja-design.com.au/2009/11/lightbox/chrysanthemum/' title='Chrysanthemum'><img width="150" height="150" src="http://wordpress.seja-design.com.au/wp-content/uploads/2009/11/Chrysanthemum-150x150.jpg" class="attachment-thumbnail" alt="Chrysanthemum" title="Chrysanthemum" /></a>
<a href='http://wordpress.seja-design.com.au/2009/11/lightbox/desert/' title='Desert'><img width="150" height="150" src="http://wordpress.seja-design.com.au/wp-content/uploads/2009/11/Desert-150x150.jpg" class="attachment-thumbnail" alt="Desert" title="Desert" /></a>
<a href='http://wordpress.seja-design.com.au/2009/11/lightbox/koala/' title='Koala'><img width="150" height="150" src="http://wordpress.seja-design.com.au/wp-content/uploads/2009/11/Koala-150x150.jpg" class="attachment-thumbnail" alt="Koala" title="Koala" /></a>
<a href='http://wordpress.seja-design.com.au/2009/11/lightbox/lighthouse/' title='Lighthouse'><img width="150" height="150" src="http://wordpress.seja-design.com.au/wp-content/uploads/2009/11/Lighthouse-150x150.jpg" class="attachment-thumbnail" alt="Lighthouse" title="Lighthouse" /></a>
<a href='http://wordpress.seja-design.com.au/2009/11/lightbox/tulips/' title='Tulips'><img width="150" height="150" src="http://wordpress.seja-design.com.au/wp-content/uploads/2009/11/Tulips-150x150.jpg" class="attachment-thumbnail" alt="Tulips" title="Tulips" /></a>
<a href='http://wordpress.seja-design.com.au/2009/11/lightbox/penguins/' title='Penguins'><img width="150" height="150" src="http://wordpress.seja-design.com.au/wp-content/uploads/2009/11/Penguins-150x150.jpg" class="attachment-thumbnail" alt="Penguins" title="Penguins" /></a>
</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wordpress.seja-design.com.au/2009/11/lightbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

