<?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>Rob Liesland &#187; WordPress</title>
	<atom:link href="http://www.robliesland.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.robliesland.com</link>
	<description>Random Web Development Thoughts</description>
	<lastBuildDate>Mon, 12 Dec 2011 20:19:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Search and Replace</title>
		<link>http://www.robliesland.com/wordpress/search-and-replace/</link>
		<comments>http://www.robliesland.com/wordpress/search-and-replace/#comments</comments>
		<pubDate>Thu, 13 May 2010 16:29:03 +0000</pubDate>
		<dc:creator>robhyland</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.robliesland.com/?p=225</guid>
		<description><![CDATA[One thing I love about WordPress is that someone has always done what I need to do, and oftentimes they created a plugin to do it. Most recently I was preparing a site that I developed on one URL to move to another URL and I wanted to make all of the in-content links and [...]]]></description>
			<content:encoded><![CDATA[<p>One thing I love about WordPress is that someone has always done what I need to do, and oftentimes they created a plugin to do it. Most recently I was preparing a site that I developed on one URL to move to another URL and I wanted to make all of the in-content links and image references relative to the site root, rather than absolute. I use the <a href="http://wordpress.org/extend/plugins/search-and-replace/" target="_blank">Search and Replace</a> plugin to clean things up in a matter of seconds &#8211; nice!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robliesland.com/wordpress/search-and-replace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery in a CMS</title>
		<link>http://www.robliesland.com/wordpress/jquery-in-a-cms/</link>
		<comments>http://www.robliesland.com/wordpress/jquery-in-a-cms/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 19:38:33 +0000</pubDate>
		<dc:creator>robhyland</dc:creator>
				<category><![CDATA[Beyond HTML]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.robliesland.com/?p=164</guid>
		<description><![CDATA[I have used jQuery twice in the past month to get some custom behavior from a CMS. In the first instance I used it to re-URL a site for Xavier, and in the second instance I used it for some custom menu options that weren&#8217;t available in WordPress. I like the results it produces, but [...]]]></description>
			<content:encoded><![CDATA[<p>I have used jQuery twice in the past month to get some custom behavior from a CMS. In the first instance I used it to re-URL a site for Xavier, and in the second instance I used it for some custom menu options that weren&#8217;t available in WordPress. I like the results it produces, but I always worry a little bit about JavaScript as a solution. I would much rather keep things server-side, but sometimes client-side is just easier (and almost as reliable).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robliesland.com/wordpress/jquery-in-a-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP Events Calendar and Internet Explorer 7</title>
		<link>http://www.robliesland.com/wordpress/wp-events-calendar-and-internet-explorer-7/</link>
		<comments>http://www.robliesland.com/wordpress/wp-events-calendar-and-internet-explorer-7/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 03:35:35 +0000</pubDate>
		<dc:creator>robhyland</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.robliesland.com/?p=157</guid>
		<description><![CDATA[UPDATE: I usually don&#8217;t like doing updates like this, but I want to keep this together. First of all, I realized this morning that I was using IE7, not IE8. I upgraded, and things worked better, but it threw a javascript error after it loaded the first event, so not much better. I decided to [...]]]></description>
			<content:encoded><![CDATA[<p>UPDATE: I usually don&#8217;t like doing updates like this, but I want to keep this together. First of all, I realized this morning that I was using IE7, not IE8. I upgraded, and things worked better, but it threw a javascript error after it loaded the first event, so not much better. I decided to downgrade events calendar (by renaming the folder and uploading the code from the previous stable version) and it looks like everything is working now. Yea!</p>
<hr />
<p>UPDATE: This fixed the error, but it also broke the tooltip, which is fairly important to the plugin functionality, so I undid my changes and am going to see if there is another way to fix this. What I haven&#8217;t figured out yet is why .tooltip does not cause a problem on the calendar in the actual site, but only in the administrator.</p>
<p>It looks like there is also some sort of issue  with the <a href="http://docs.jquery.com/UI/Datepicker" target="_blank">jquery datepicker plugin</a>. If I had to guess I would bet that it is the same issue.</p>
<hr />One of the sites I help maintain was trying to use the <a href="http://www.wp-eventscalendar.com/" target="_blank">WP Events Calendar plugin</a>, and when we set it up everything worked great, but when our users went to use it IE8 kept denying them access to the page.</p>
<p>I looked at a lot of code and narrowed it down to the <a href="http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/" target="_blank">jquery tooltip plugin</a>. Eventually I found the solution &#8211; change the createHelper function in the jquery tooltip code from <code>.appendTo('document.body');</code> to <code>.appendTo('document.anotherPageElement');</code>. In my case I switched out &#8216;body&#8217; for &#8216;wpcontent&#8217;.  If you need to edit this for your WordPress installation the pathing should be something like /wp-content/plugins/events-calendar/js/jquery.tooltip.min.js. I actually pulled in the full code so I could understand it better. I can&#8217;t imagine that will affect performance too much.</p>
<p>Now I am getting the same error on the page where I edit the events, but I think this is a good start.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robliesland.com/wordpress/wp-events-calendar-and-internet-explorer-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Menubar Plugin</title>
		<link>http://www.robliesland.com/wordpress/wordpress-menubar-plugin/</link>
		<comments>http://www.robliesland.com/wordpress/wordpress-menubar-plugin/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 03:02:14 +0000</pubDate>
		<dc:creator>robhyland</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.robliesland.com/?p=135</guid>
		<description><![CDATA[I recently used the WordPress Menubar Plugin on a couple of sites I put together, and I love it. It is so easy to use and it works really well. I like the various options it provides me &#8211; from different menu styles to how the menus are actually built out.]]></description>
			<content:encoded><![CDATA[<p>I recently used the <a href="http://www.dontdream.it/wordpress-menubar-plugin" target="_blank">WordPress Menubar Plugin</a> on a couple of sites I put together, and I love it. It is so easy to use and it works really well. I like the various options it provides me &#8211; from different menu styles to how the menus are actually built out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robliesland.com/wordpress/wordpress-menubar-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arras Slideshow Setup</title>
		<link>http://www.robliesland.com/wordpress/arras-slideshow-setup/</link>
		<comments>http://www.robliesland.com/wordpress/arras-slideshow-setup/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 13:20:14 +0000</pubDate>
		<dc:creator>robhyland</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.robliesland.com/?p=122</guid>
		<description><![CDATA[UPDATE: My friend emailed me yesterday and told me he found the instructions, right on the dashboard of the template settings. I had actually seen these when I was looking around the template, but it was talking about &#8216;thumbnails,&#8217; so I thought I didn&#8217;t care. i guess I should have paid more attention. A friend [...]]]></description>
			<content:encoded><![CDATA[<p>UPDATE: My friend emailed me yesterday and told me he found the instructions, right on the dashboard of the template settings. I had actually seen these when I was looking around the template, but it was talking about &#8216;thumbnails,&#8217; so I thought I didn&#8217;t care. i guess I should have paid more attention.</p>
<p>A friend of mine was building out a WordPress site using the <a href="http://www.arrastheme.com/" target="_blank">Arras Theme</a> and he was having a hard time getting the image rotator on the home page to work. He asked me if I had any ideas, and after looking around, and coming up totally empty, I told him I would come back to it later. Eventually, he found the solution on Google. Here is what he found: <a href="http://i43.tinypic.com/4ida3n.jpg" target="_blank">http://i43.tinypic.com/4ida3n.jpg</a>, on this site, <a href="http://wordpress.org/support/topic/286802" target="_blank">http://wordpress.org/support/topic/286802</a> .</p>
<ol>
<li> Click on the upload image icon and upload your image, with recommended dimensions of at least 700&#215;300.<br />
<img src="http://www.robliesland.com/wp-content/uploads/image/arras12.jpg" alt="" width="500" height="258" /></li>
<li> Once the image has uploaded, click on File URL and copy the URL that is generated in the Link URL field.<br />
<img src="http://www.robliesland.com/wp-content/uploads/image/arras3.jpg" alt="" width="500" height="190" /></li>
<li> In a post that is in one of the featured categories, create a custom field called &#8216;thumb&#8217; and paste the URL in there. It is the excerpt from this post, and this thumb image, that are pulled into the opening image rotator. Make sure your post is in the featured category, as defined in the arras options.<br />
<img src="http://www.robliesland.com/wp-content/uploads/image/arras4.jpg" alt="" width="500" height="183" /></li>
<li> If you did everything right, it should work.<br />
<img src="http://www.robliesland.com/wp-content/uploads/image/arras5.jpg" alt="" width="500" height="350" /></li>
</ol>
<p>I am not sure how we were supposed to figure that out on our own. Thanks, scarpi21.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robliesland.com/wordpress/arras-slideshow-setup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Importing from Blogger</title>
		<link>http://www.robliesland.com/wordpress/importing-from-blogger/</link>
		<comments>http://www.robliesland.com/wordpress/importing-from-blogger/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 20:09:16 +0000</pubDate>
		<dc:creator>robhyland</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.robliesland.com/?p=79</guid>
		<description><![CDATA[Today I had my first opportunity to import someone&#8217;s blog from blogger to WordPress. Overall it went well and it pulled all of the posts in quickly and accurately. The only issue I see is that it looks like all of the images still reside on the blogger server. This is not the end of [...]]]></description>
			<content:encoded><![CDATA[<p>Today I had my first opportunity to import someone&#8217;s blog from blogger to WordPress. Overall it went well and it pulled all of the posts in quickly and accurately. The only issue I see is that it looks like all of the images still reside on the blogger server. This is not the end of the world. There are only a few posts with images, so I think I can just grab them and relink. I am not sure what I would do if there were more. &nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robliesland.com/wordpress/importing-from-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use WordPress as a CMS and Blog &#8211; The Best Way &#124; BrianYerkes.com</title>
		<link>http://www.robliesland.com/wordpress/use-wordpress-as-a-cms-and-blog-the-best-way-brianyerkes-com-naples-web-design-fort-myers-web-design/</link>
		<comments>http://www.robliesland.com/wordpress/use-wordpress-as-a-cms-and-blog-the-best-way-brianyerkes-com-naples-web-design-fort-myers-web-design/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 14:21:46 +0000</pubDate>
		<dc:creator>robhyland</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.robliesland.com/?p=65</guid>
		<description><![CDATA[I found these simple instructions on how to use WordPress as both a CMS and a blog. I don&#8217;t know that I would have figured this out on my own, so it was nice to have some help. Use WordPress as a CMS and Blog &#8211; The Best Way &#124; BrianYerkes.com.]]></description>
			<content:encoded><![CDATA[<p>I found these simple instructions on how to use WordPress as both a CMS and a blog. I don&#8217;t know that I would have figured this out on my own, so it was nice to have some help.</p>
<p><a target="_blank" href="http://www.brianyerkes.com/use-wordpress-as-a-cms-and-blog-the-best-way/">Use WordPress as a CMS and Blog &#8211; The Best Way | BrianYerkes.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robliesland.com/wordpress/use-wordpress-as-a-cms-and-blog-the-best-way-brianyerkes-com-naples-web-design-fort-myers-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excluding Pages in WordPress</title>
		<link>http://www.robliesland.com/wordpress/excluding-pages-in-wordpress/</link>
		<comments>http://www.robliesland.com/wordpress/excluding-pages-in-wordpress/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 20:51:16 +0000</pubDate>
		<dc:creator>robhyland</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.robliesland.com/?p=62</guid>
		<description><![CDATA[In one of the sites I help manage the content managers were interested in adding pages that would not show up in the navigation. I knew that this was possible by updating the call to the wp_list_pages function, but maintaining this would be too cumbersome for the average user, so I went in search of [...]]]></description>
			<content:encoded><![CDATA[<p>In one of the sites I help manage the content managers were interested in adding pages that would not show up in the navigation. I knew that this was possible by updating the call to the <a target="_blank" href="http://codex.wordpress.org/Template_Tags/wp_list_pages">wp_list_pages function</a>, but maintaining this would be too cumbersome for the average user, so I went in search of a plugin. Previously I had not had a lot of success looking for this type of plugin, but today I found a good one that makes it really simple for the users: <a target="_blank" href="http://wordpress.org/extend/plugins/exclude-pages/">Exclude&nbsp;Pages</a>.</p>
<p>I don&#8217;t remember what terms I had searched for previously, but when I searched for &#8216;WordPress hide pages&#8217; I found this in a <a target="_blank" href="http://www.techcounter.com/wordpress/how-to-hide-pages-in-wordpress/">blog post on another site</a>.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robliesland.com/wordpress/excluding-pages-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress as a CMS Videos</title>
		<link>http://www.robliesland.com/wordpress/wordpress-as-a-cms-videos/</link>
		<comments>http://www.robliesland.com/wordpress/wordpress-as-a-cms-videos/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 21:08:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.robliesland.com/?p=51</guid>
		<description><![CDATA[A coworker of mine recenly showed me screenr.com and I thought it would be a great way to expand my WordPress as a CMS instructions. Check out the following videos to see my mouse in action:]]></description>
			<content:encoded><![CDATA[<p>A coworker of mine recenly showed me <a target="_blank" href="http://www.screenr.com">screenr.com</a> and I thought it would be a great way to expand my <a href="http://www.robliesland.com/wordpress-as-a-cms/">WordPress as a CMS instructions</a>.</p>
<p>Check out the following videos to see my mouse in action:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0" width="560" height="345"><param name="movie" value="http://screenr.com/Content/assets/screenr_0817090731.swf" /><param name="flashvars" value="i=12540" /><param name="allowFullScreen" value="true" /><embed src="http://screenr.com/Content/assets/screenr_0817090731.swf" flashvars="i=12540" allowfullscreen="true" width="560" height="345" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0" width="560" height="345"><param name="movie" value="http://screenr.com/Content/assets/screenr_0817090731.swf" /><param name="flashvars" value="i=12544" /><param name="allowFullScreen" value="true" /><embed src="http://screenr.com/Content/assets/screenr_0817090731.swf" flashvars="i=12544" allowfullscreen="true" width="560" height="345" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0" width="560" height="345"><param name="movie" value="http://screenr.com/Content/assets/screenr_0817090731.swf" /><param name="flashvars" value="i=12549" /><param name="allowFullScreen" value="true" /><embed src="http://screenr.com/Content/assets/screenr_0817090731.swf" flashvars="i=12549" allowfullscreen="true" width="560" height="345" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.robliesland.com/wordpress/wordpress-as-a-cms-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress as a CMS</title>
		<link>http://www.robliesland.com/wordpress/wordpress-as-a-cms/</link>
		<comments>http://www.robliesland.com/wordpress/wordpress-as-a-cms/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 19:19:32 +0000</pubDate>
		<dc:creator>robhyland</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.robliesland.com/?p=23</guid>
		<description><![CDATA[A while back I started looking for some info on WordPress as a CMS, and I couldn&#8217;t find anything too useful, so I made my own. It is pretty basic, and I am open to additions/suggestions/comments.]]></description>
			<content:encoded><![CDATA[<p>A while back I started looking for some info on WordPress as a CMS, and I couldn&#8217;t find anything too useful, <a href="http://www.robliesland.com/wordpress-as-a-cms/">so I made my own</a>. It is pretty basic, and I am open to additions/suggestions/comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robliesland.com/wordpress/wordpress-as-a-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

