<?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>Sample WordPress Site</title>
	<atom:link href="https://www.heidicool.com/samplewordpress/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.heidicool.com/samplewordpress</link>
	<description>an example for WordPress training</description>
	<lastBuildDate>Sat, 30 Jul 2011 15:22:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.18</generator>
	<item>
		<title>Need a bit more editing control? Try TinyMCE Advanced</title>
		<link>https://www.heidicool.com/samplewordpress/2011/07/30/need-a-bit-more-editing-control-try-tinymce-advanced/</link>
		<comments>https://www.heidicool.com/samplewordpress/2011/07/30/need-a-bit-more-editing-control-try-tinymce-advanced/#respond</comments>
		<pubDate>Sat, 30 Jul 2011 15:22:01 +0000</pubDate>
		<dc:creator><![CDATA[Heidi Cool]]></dc:creator>
				<category><![CDATA[WordPress Plug-ins]]></category>
		<category><![CDATA[editor]]></category>

		<guid isPermaLink="false">https://www.heidicool.com/samplewordpress/?p=301</guid>
		<description><![CDATA[WordPress has a built in editor that isn't bad, but sometimes you need a bit more control. Your site admins/editors may need access to more options. On the other hand you may want to create some restrictions. For instance you may wish to prevent them from making giant red headlines if those will clash with [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>WordPress has a built in editor that isn't bad, but sometimes you need a bit more control. Your site admins/editors may need access to more options. On the other hand you may want to create some restrictions. For instance you may wish to prevent them from making <span class="bigred">giant red headlines</span> if those will clash with your <span class="oceanblue">ocean blue theme.</span> <a href="http://wordpress.org/extend/plugins/tinymce-advanced/">TinyMCE Advanced</a> will let you add or subtract the editing options you make available to your users, and offers far more options in the visual editor than you would get by default. </p>
<p>Another issue relates to what happens when you paste in content from other places. For instance, I often write posts in code and then just paste them into the HTML editor window. Sometimes when I do this WordPress will add additional linebreaks. </p>
<p>On my sites I solve this problem by adding</p>
<p class="code">remove_filter ('the_content', 'wpautop');</p>
<p>to my functions.php file. This works fine for me because I write my pages and posts in HTML. But it doesn't work well for clients who are unlikely to do that. So in those cases I set TinyMCE Advanced to stop removing the &lt;p&gt; and &lt;br /&gt; elements and to show them in the HTML editor. This way when it adds such breaks you can see them in the editor and then remove them. </p>
<p><img src="https://www.heidicool.com/samplewordpress/wp-content/uploads/2011/07/tinymce.jpg" alt="TinyMCE Advanced settings" title="TinyMCE Advanced settings" width="600" height="374" class="alignnone size-full wp-image-302" srcset="https://www.heidicool.com/samplewordpress/wp-content/uploads/2011/07/tinymce.jpg 600w, https://www.heidicool.com/samplewordpress/wp-content/uploads/2011/07/tinymce-300x187.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /> </p>
<p>There are many different plug-ins available for WordPress and you may find one that better suits your needs, but TinyMCE Advanced has been able to solve most of my problems. </p>]]></content:encoded>
			<wfw:commentRss>https://www.heidicool.com/samplewordpress/2011/07/30/need-a-bit-more-editing-control-try-tinymce-advanced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hosting WordPress in a subdirectory</title>
		<link>https://www.heidicool.com/samplewordpress/2011/07/29/hosting-wordpress-in-a-subdirectory/</link>
		<comments>https://www.heidicool.com/samplewordpress/2011/07/29/hosting-wordpress-in-a-subdirectory/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 02:12:52 +0000</pubDate>
		<dc:creator><![CDATA[Heidi Cool]]></dc:creator>
				<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">https://www.heidicool.com/samplewordpress/?p=295</guid>
		<description><![CDATA[If you want to host WordPress in a subdirectory, but still use it as the site for your main domain, there are 2 simple steps. Change the url in the WordPress Dashboard Go to Settings: General. In the field where it asks for your WordPress URL include the full path to the directory in which [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>If you want to host WordPress in a subdirectory, but still use it as the site for your main domain, there are 2 simple steps.</p>

<h5>Change the url in the WordPress Dashboard</h5>
<p>Go to Settings: General. In the field where it asks for your WordPress URL include the full path to the directory in which you installed WordPress. For instance if you install WordPress in a directory called givecamp the URL might be something like: http://www.yoursite.com/givecamp.</p>
<p>In the field for site address put your domain, i.e. http://www.yoursite.com/.</p>

<p><a href="https://www.heidicool.com/samplewordpress/wp-content/uploads/2011/07/urlsettings.jpg"><img src="https://www.heidicool.com/givecamp/wp-content/uploads/2011/07/urlsettingssm.jpg" alt="Changing your URL" title="Changing your URL" width="500" height="205" class="alignnone size-full wp-image-19" /></a></p>

<h5>Edit your index.php file</h5>
<p>Download index.php from the root directory using your favorite FTP or sFTP program. Note: This is a different index.php file than the one in your theme directory. The file will look something like this:</p>
<p class="code">&lt;?php<br />
  /**<br />
  * Front to the WordPress application. This file doesn't do anything, but loads<br />
  * wp-blog-header.php which does and tells WordPress to load the theme.<br />
  *<br />
  * @package WordPress<br />
  */</p>
<p class="code">/**<br />
  * Tells WordPress to load the WordPress theme and output it.<br />
  *<br />
  * @var bool<br />
  */<br />
  define('WP_USE_THEMES', true);</p>
<p class="code">/** Loads the WordPress Environment and Template */<br />
  require('./wp-blog-header.php');<br />
  ?&gt;</p>

<p>Change the line that begins with require to reflect the path to your directory. In our example we would change it from: </p>
<p class="code">require('./wp-blog-header.php');</p>
<p>to</p>
<p class="code">require('./givecamp/wp-blog-header.php');</p>

<p>Upload the edited file to your root directory.</p>

]]></content:encoded>
			<wfw:commentRss>https://www.heidicool.com/samplewordpress/2011/07/29/hosting-wordpress-in-a-subdirectory/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Custom Post Types UI</title>
		<link>https://www.heidicool.com/samplewordpress/2010/12/28/custom-post-types-ui/</link>
		<comments>https://www.heidicool.com/samplewordpress/2010/12/28/custom-post-types-ui/#respond</comments>
		<pubDate>Tue, 28 Dec 2010 18:40:23 +0000</pubDate>
		<dc:creator><![CDATA[Heidi Cool]]></dc:creator>
				<category><![CDATA[WordPress Plug-ins]]></category>
		<category><![CDATA[custom post types]]></category>
		<category><![CDATA[taxonomies]]></category>

		<guid isPermaLink="false">https://www.heidicool.com/samplewordpress/?p=273</guid>
		<description><![CDATA[When WordPress 3.0 was launched it included a very useful new option, "custom post types." WordPress has several post types built in, but the ones you and I use most often are "pages," for static content, and "posts," for blog posts and similar content. Custom post types allow you to create additional types specific to your needs.  <a href="https://www.heidicool.com/samplewordpress/2010/12/28/custom-post-types-ui/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>When WordPress 3.0 was launched it included a very useful new option, <a href="http://codex.wordpress.org/Custom_Post_Types">custom post types</a>. WordPress has several post types built in, but the ones you and I use most often are "pages," for static content, and "posts," for blog posts and similar content. Custom post types allow you to create additional types specific to your needs.  </p>
<p class="photoright"><img src="https://www.heidicool.com/samplewordpress/wp-content/uploads/2010/12/coventrymenu.jpg" alt="Coventry Merchants Menu" title="Coventry Merchants Menu" width="224" height="278" class="alignnone size-full wp-image-280" /><br />Coventry Merchants menu</p>
<p>For example, on the <a href="http://www.coventryvillage.org/">Coventry Village Web site,</a> I needed to add p<a href="http://www.coventryvillage.org/coventry-village-merchants/">ages for each of the stores, restaurants and other merchants</a> in the village. Originally I wanted to use posts, rather than pages, for these so that I could use categories and tags to organize them. Alas, I was concerned about the merchant categories overlapping with blog categories, especially given that the blog has multiple authors. I then thought of adding a separate blog to handle these posts, but that had its downsides as well. And then I remembered reading about custom post types. This turned out to be the perfect solution. </p>
<p>To make the new pages, I created a custom post type of "merchants" then added two custom taxonomies, one for merchant types such as <a href="http://www.coventryvillage.org/types/stores/">Stores </a>or <a href="http://www.coventryvillage.org/types/restaurants/">Restaurants</a>, and another for more <a href="http://www.coventryvillage.org/coventry-village-merchants/merchant-tags/">descriptive tags</a>. I could have used regular tags, but again, I wanted to keep these separate from the blog tags. <span id="more-273"></span></p>
<p>To add custom post types and taxonomies requires a bit of tinkering with your functions.php and other files. This didn't sound too complicated, but as I was reading the various instructions, I came across the <a href="http://wordpress.org/extend/plugins/custom-post-type-ui/">Custom Post Types UI plug-in</a>. I decided to give this a try because it would add both the post types and the taxonomies I needed. Installation was quick and easy. After a post type has been added it appears as another posting option in the left dashboard menu along with your regular pages and posts.</p>
<p>I quickly set to work adding my new pages and within a few weeks I was done. (There were 62 pages to build and I was working on other projects as well.) Everything looked right, and the taxonomy scheme made it really easy to browse the stores. I was now ready to add this section to the public menu and announce it on Twitter and Facebook, just as soon as I validated my pages and ran them by a few people.</p>
<h5>Oh noes! 404 errors for custom post types: Role Scoper saves the day.</h5>
<p>When I tried validating my pages I kept getting an error message saying the W3C couldn't validate the page because it was getting a 404 error. This left me so bewildered that after much Googling I posted a question about it on the <a href="http://webdevstudios.com/support/forum/custom-post-type-ui/">Custom Post Type UI support forum</a>. Then I asked my friend Jenn to look at the pages on her computer. She couldn't see them, but was getting a 404 error as well. I'd had no problem because I was logged in. Sigh. More Googling. </p>
<p>Then I found the problem. When you add a custom post type you are able to also assign specific capabilities such as who can edit, or view the pages. From what I'd seen the default should have been the same as for blog posts, but it wasn't. My next step was to find instructions on adding the right capabilities so that readers could view the pages. In the process I discovered that the <a href="https://www.heidicool.com/samplewordpress/2010/12/28/role-scoper/">Role Scoper</a> plug-in could handle this for me. I'd already installed Role Scoper in order to give bloggers different privileges on the site than admins, so I just went to those settings and lo and behold, there was an option to give readers access to the merchant pages. Problem solved!</p>
<p>Aside from the 404 hiccup, everything went smoothly, and now that I know to use Role Scoper in conjunction with Custom Post Type UI, it will go more smoothly in the future. If you have a need for custom post types and taxonomies and don't want to be digging around in functions.php, this plug-in combo should work well for you.</p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/custom-post-type-ui/">WordPress Plugin Directory: Custom Post Type UI</a></li>
<li><a href="http://webdevstudios.com/support/forum/custom-post-type-ui/">Custom Post Type UI support forum</a><?li>
<li><a href="http://agapetry.net/news/introducing-role-scoper/">Role Scoper Home Page</a></li>
</ul>

<h5>Custom Post Types UI</h5>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="580" height="460" id="myFlashContent">

<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=10187055&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=90b92c&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" />
<param name="wmode" value="opaque" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="http://vimeo.com/moogaloop.swf?clip_id=10187055&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=90b92c&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" width="580" height="460">

<param name="wmode" value="opaque" />
<!--<![endif]-->
<a href="http://www.adobe.com/go/getflashplayer">

<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
</a> This is a video about HeadSpace 2 SEO
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>


<h5>Custom Post Type and Taxonomy Resources</h5>
<ul>
<li><a href="http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress">Custom post types in WordPress</a></li>
<li><a href="http://thinkvitamin.com/code/create-your-first-wordpress-custom-post-type/">Create your first WordPress Custom Post Type</a></li>
<li><a href="http://wpengineer.com/1969/impressions-of-custom-post-type/">First Impressions of Custom Post Type - WP Engineer</a></li>
<li><a href="http://www.1stwebdesigner.com/wordpress/essential-guide-wordpress-custom-taxonomies/">The Essential Guide to WordPress 3.0 Custom Taxonomies</a></li>
<li><a href="http://codex.wordpress.org/Custom_Post_Types">WordPress Codex: Custom Post Types</li></a>
<li><a href="http://codex.wordpress.org/Function_Reference/register_post_type">WordPress Codex: Function Reference/register post type</a></li>
</ul>



]]></content:encoded>
			<wfw:commentRss>https://www.heidicool.com/samplewordpress/2010/12/28/custom-post-types-ui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Role Scoper</title>
		<link>https://www.heidicool.com/samplewordpress/2010/12/28/role-scoper/</link>
		<comments>https://www.heidicool.com/samplewordpress/2010/12/28/role-scoper/#respond</comments>
		<pubDate>Tue, 28 Dec 2010 17:27:41 +0000</pubDate>
		<dc:creator><![CDATA[Heidi Cool]]></dc:creator>
				<category><![CDATA[WordPress Plug-ins]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[permission]]></category>
		<category><![CDATA[user roles]]></category>

		<guid isPermaLink="false">https://www.heidicool.com/samplewordpress/?p=269</guid>
		<description><![CDATA[When developing sites for businesses, or even group blogs, there may be times when you want to provide greater control over which users can access, modify or approve content. While WordPress offers varying levels of access, these levels apply site-wide. Role Scoper gives you more granular control, so that you can give user X permission to edit and approve content in section one, or category B, while still restricting them from editing section two.  <a href="https://www.heidicool.com/samplewordpress/2010/12/28/role-scoper/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>When developing sites for businesses, or even group blogs, there may be times when you want to provide greater control over which users can access, modify or approve content. While WordPress offers varying levels of access, these levels apply site-wide. Role Scoper gives you more granular control, so that you can give user X permission to edit and approve content in section one, or category B, while still restricting them from editing section two. <span id="more-269"></span></p>
<p>This is particularly useful for organizations who want to assign maintenance of different sections to different people without worrying that they'll edit things they shouldn't. Role Scoper is also useful for sites implementing custom post-types and taxonomies. When you add custom-post types to a site, they can only be viewed by the administrator until you define who else can view them. While this can be done manually, Role Scoper makes it easy to give readers permission to view such pages.</p>

<ul>
<li><a href="http://wordpress.org/extend/plugins/role-scoper/">WordPress Plugin Directory: Role Scoper</a></li>
<li><a href="http://agapetry.net/news/introducing-role-scoper/">Role Scoper Home Page</a></li>
</ul>


]]></content:encoded>
			<wfw:commentRss>https://www.heidicool.com/samplewordpress/2010/12/28/role-scoper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In case you missed it: the WordPress Presentation Screencast</title>
		<link>https://www.heidicool.com/samplewordpress/2010/11/23/in-case-you-missed-it-the-wordpress-presentation-screencast/</link>
		<comments>https://www.heidicool.com/samplewordpress/2010/11/23/in-case-you-missed-it-the-wordpress-presentation-screencast/#respond</comments>
		<pubDate>Tue, 23 Nov 2010 07:26:55 +0000</pubDate>
		<dc:creator><![CDATA[Heidi Cool]]></dc:creator>
				<category><![CDATA[Announcements and Discussion]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">https://www.heidicool.com/samplewordpress/?p=257</guid>
		<description><![CDATA[When I was first asking people for ideas on what I should include in the presentation a few asked if there would be a way to see it later. Sometimes when I do presentations I'll use Keynote or PowerPoint then save the slides to Slideshare. But in this case I knew I'd be showing a live site and various example files, so I knew that wouldn't work.  <a href="https://www.heidicool.com/samplewordpress/2010/11/23/in-case-you-missed-it-the-wordpress-presentation-screencast/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>This site was created to provide examples for use in a presentation given to the Cleveland Web Development SIG on November 20, 2010.</p>

<p>When I was first asking people for ideas on what I should include in the presentation a few asked if there would be a way to see it later. Sometimes when I do presentations I'll use Keynote or PowerPoint then save the slides to Slideshare. But in this case I knew I'd be showing a live site and various example files, so I knew that wouldn't work.<span id="more-257"></span> </p><p>Instead I made a video recording of my screen using <a href="http://store.shinywhitebox.com/home/home.html">iShowU</a> and the built in microphone on my MacBook Pro. I then split the video into 7 parts&mdash;to fit YouTube's 15 min. maximum length requirements&mdash;and added them all to a <a href="http://www.youtube.com/user/hacool2#grid/user/1592F95456C14BE6">playlist</a>. So if you watch the video below it should automatically take you to the following segments.</p>

<p>I don't do a lot of video, so I've yet to figure out the best way to optimize these for YouTube, thus the video will not look as crisp here as it did before I uploaded it. There will also be some sections during which audience members were speaking that you may not be able to hear as well. But hopefully it's sufficient to get the gist of it. There are more details here on the site, but for those who would like to watch the presentation, here it is.</p>

<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="560" height="340" id="myFlashContent">

<param name="movie" value="http://www.youtube.com/p/1592F95456C14BE6&amp;hl=en&amp;fs=1&amp;" />

<param name="wmode" value="opaque" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="http://www.youtube.com/p/1592F95456C14BE6&amp;hl=en&amp;fs=1&amp;" width="560" height="340">

<param name="wmode" value="opaque" />
<!--<![endif]-->
<a href="http://www.adobe.com/go/getflashplayer">
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
</a>Video of Nov. 20, 2010 WordPress Presentation
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
</p>]]></content:encoded>
			<wfw:commentRss>https://www.heidicool.com/samplewordpress/2010/11/23/in-case-you-missed-it-the-wordpress-presentation-screencast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress suggestions</title>
		<link>https://www.heidicool.com/samplewordpress/2010/11/23/wordpress-suggestions/</link>
		<comments>https://www.heidicool.com/samplewordpress/2010/11/23/wordpress-suggestions/#respond</comments>
		<pubDate>Tue, 23 Nov 2010 06:01:39 +0000</pubDate>
		<dc:creator><![CDATA[Heidi Cool]]></dc:creator>
				<category><![CDATA[Announcements and Discussion]]></category>
		<category><![CDATA[books]]></category>

		<guid isPermaLink="false">https://www.heidicool.com/samplewordpress/?p=252</guid>
		<description><![CDATA[Thanks to everyone who came to Saturday's WordPress class. Several of you had great ideas and suggestions to share, so if you didn't get a chance to add your 2 cents then, please feel free to add any other thoughts (or questions) in the comments below. <a href="https://www.heidicool.com/samplewordpress/2010/11/23/wordpress-suggestions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[

<p>Thanks to everyone who came to Saturday's WordPress class. Several of you had great ideas and suggestions to share, so if you didn't get a chance to add your 2 cents then, please feel free to add any other thoughts (or questions) in the comments below. </p>
<p>Some of you had asked about WordPress books, so I put together a <a href="https://www.heidicool.com/samplewordpress/why-use-wordpress/recommended-reading/">Recommended Reading page </a>to get you started.  <span id="more-252"></span></p><p>This includes the O'Reilly book that Aoirthoir suggested as well as a few others on related topics. If you've read others that you think would be of interest, please add those below as well. </p>

<p>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="500" height="175" id="myFlashContent">

<param name="movie" value="http://ws.amazon.com/widgets/q?ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Fheidcomwebdes-20%2F8010%2Fbc9e78bb-7165-4bde-9119-f04d02fe4dab&Operation=GetDisplayTemplate" />

<param name="wmode" value="opaque" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="http://ws.amazon.com/widgets/q?ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Fheidcomwebdes-20%2F8010%2Fbc9e78bb-7165-4bde-9119-f04d02fe4dab&Operation=GetDisplayTemplate" width="500" height="175">

<param name="wmode" value="opaque" />
<!--<![endif]-->
<a href="http://www.adobe.com/go/getflashplayer">
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
</a> Web Books on Amazon
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
</p>]]></content:encoded>
			<wfw:commentRss>https://www.heidicool.com/samplewordpress/2010/11/23/wordpress-suggestions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPTouch Mobile Theme</title>
		<link>https://www.heidicool.com/samplewordpress/2010/11/19/wptouch-mobile-theme/</link>
		<comments>https://www.heidicool.com/samplewordpress/2010/11/19/wptouch-mobile-theme/#respond</comments>
		<pubDate>Fri, 19 Nov 2010 20:24:44 +0000</pubDate>
		<dc:creator><![CDATA[Heidi Cool]]></dc:creator>
				<category><![CDATA[WordPress Plug-ins]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[smartphones]]></category>

		<guid isPermaLink="false">https://www.heidicool.com/samplewordpress/?p=189</guid>
		<description><![CDATA[Scan this QR Code to view the site on your smart phone These days there is more and more demand to produce mobile versions of Web sites. WPTouch creates a mobile ready version of your site for smart phones such as iPhone, Droid, Blackberry and others. It also includes an option for users to switch [&#8230;]]]></description>
				<content:encoded><![CDATA[<p class="photoright"><img src="https://www.heidicool.com/samplewordpress/wp-content/themes/1genericsampletheme/images/qrcode.jpg" alt="QR Code for Site Url" /><br />Scan this QR Code to view the <br />
site on your smart phone</p>
<p>These days there is more and more demand to produce mobile versions of Web sites. WPTouch creates a mobile ready version of your site for smart phones such as iPhone, Droid, Blackberry and others. It also includes an option for users to switch back and forth between mobile and regular views.</p>
<p>WP Touch seems to be optimized more for blogs. In mobile view you are taken to a listing of posts that you can click through for easy reading. To view regular pages you can navigate via a drop-down menu. In your settings you can decide what pages to include and whether to list them in order by name or page-id. Unfortunately you can't order the pages manually so if you've arranged pages into parent child relationships, as I have on this site, they won't show up in those related groups. So generally I find it makes more sense to view pages in regular mode while reading blog posts in mobile mode. <span id="more-189"></span></p>
<p>That said, I've not spent a lot of time experimenting with mobile options for WordPress pages, so I still need to explore other solutions. If you have other suggestions please add them via the comments below.</p>

<ul>
<li><a href="http://wordpress.org/extend/plugins/wptouch/">WordPress Plugin Directory: WP Touch</a></li>
<li><a href="http://www.bravenewcode.com/products/wptouch-pro/">WP Touch Pro Homepage</a></li>
 </ul>

<h5>Examples of this site as seen on Droid X using WPTouch</h5>
<p><img src="https://www.heidicool.com/samplewordpress/wp-content/themes/1genericsampletheme/images/wptouchnormal.jpg" alt="Blog page on Droid X" /></p>
<p>Blog home page as viewed in normal mode on Droid X in Dolphin Browser</p>

<p><img src="https://www.heidicool.com/samplewordpress/wp-content/themes/1genericsampletheme/images/wptouchpostlist.jpg" alt="Blog post list on Droid X" /></p>
<p>List of blog posts viewed using WPTouch in Mobile mode</p>

<p><img src="https://www.heidicool.com/samplewordpress/wp-content/themes/1genericsampletheme/images/wptouchpost.jpg" alt="Blog post on Droid X" /></p>
<p>This blog post viewed using WPTouch in Mobile mode</p>

<p><img src="https://www.heidicool.com/samplewordpress/wp-content/themes/1genericsampletheme/images/wptouchpages.jpg" alt="Site pages list on Droid X" /></p>
<p>List of pages viewed using WPTouch in Mobile mode</p>
 

 
]]></content:encoded>
			<wfw:commentRss>https://www.heidicool.com/samplewordpress/2010/11/19/wptouch-mobile-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Database Backup</title>
		<link>https://www.heidicool.com/samplewordpress/2010/11/18/database-backup/</link>
		<comments>https://www.heidicool.com/samplewordpress/2010/11/18/database-backup/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 21:30:08 +0000</pubDate>
		<dc:creator><![CDATA[Heidi Cool]]></dc:creator>
				<category><![CDATA[WordPress Plug-ins]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">https://www.heidicool.com/samplewordpress/?p=177</guid>
		<description><![CDATA[Backing up your database is important for many reasons, including security. If your database gets damaged or hacked, having a back-up on hand will make it much easier to quickly get your site back online. <a href="https://www.heidicool.com/samplewordpress/2010/11/18/database-backup/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Backing up your database is important for many reasons, including security. If your database gets damaged or hacked, having a back-up on hand will make it much easier to quickly get your site back online. If you are a database or MySQL wiz you probably have a preferred method for database back-ups. Other tech savvy folks may want to follow the instructions in the WordPress Codex and back-up via cPanel or phpMyAdmin. </p>
<p>If the above ideas sound daunting, there are many plug-ins that will take care of this for you. WordPress Database Backup has a pretty good reputation and is very easy to set-up. It also allows you to schedule your periodic back-ups and to choose whether they should be saved to the server, to your computer or sent to you via e-mail.</p>

<ul>
<li><a href="http://wordpress.org/extend/plugins/wp-db-backup/">WordPress Plugin Directory: WordPress Database Backup</a></li>
<li><a href="http://austinmatzko.com/wordpress-plugins/wp-db-backup/">WordPress Database Backup</a></li>
<li><a href="http://codex.wordpress.org/Backing_Up_Your_Database">WordPress Codex: Backing Up Your Database</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>https://www.heidicool.com/samplewordpress/2010/11/18/database-backup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Twitterlink Comments</title>
		<link>https://www.heidicool.com/samplewordpress/2010/11/18/twitterlink-comments/</link>
		<comments>https://www.heidicool.com/samplewordpress/2010/11/18/twitterlink-comments/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 06:48:38 +0000</pubDate>
		<dc:creator><![CDATA[Heidi Cool]]></dc:creator>
				<category><![CDATA[WordPress Plug-ins]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">https://www.heidicool.com/samplewordpress/?p=174</guid>
		<description><![CDATA[Your default comments form includes fields for a commenter's e-mail address, name and Web site, but these days many of us would also like to be able to share our Twitter usernames when making comments <a href="https://www.heidicool.com/samplewordpress/2010/11/18/twitterlink-comments/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Your default comments form includes fields for a commenter's e-mail address, name and Web site, but these days many of us would also like to be able to share our Twitter usernames when making comments. Twitterlink comments will add the field to your form as well as post the username with a link to the account when someone makes a post. The settings allow you to determine where the link is placed, though it doesn't offer quite as much control as I would prefer. </p>
<p>You can let the plug-in handle everything or you can manually code your comments.php form to include the Twitter field. For this site I did that by adding the following code immediately below the code for the Web site field.</p>
<p class="code">&lt;p&gt;&lt;input type=&quot;text&quot; name=&quot;atf_twitter_id&quot;  id=&quot;atf_twitter_id&quot; value=&quot;<br />
  &quot; size=&quot;22&quot; tabindex=&quot;4&quot; /&gt;<br />
  &lt;label for=&quot;atf_twitter_id&quot;&gt;&lt;small&gt;Twitter ID&lt;/small&gt;&lt;/label&gt;&lt;/p&gt;</p>

<ul>
<li><a href="http://wordpress.org/extend/plugins/twitterlink-comments/">WordPress Plugin Directory: TwitterLink Comments</a></li>
<li><a href="http://comluv.com/download/twitterlink-comments/">TwitterLink Comments Home Page</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>https://www.heidicool.com/samplewordpress/2010/11/18/twitterlink-comments/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sociable for WordPress 3.0</title>
		<link>https://www.heidicool.com/samplewordpress/2010/11/18/sociable-for-wordpress-30/</link>
		<comments>https://www.heidicool.com/samplewordpress/2010/11/18/sociable-for-wordpress-30/#respond</comments>
		<pubDate>Thu, 18 Nov 2010 06:36:42 +0000</pubDate>
		<dc:creator><![CDATA[Heidi Cool]]></dc:creator>
				<category><![CDATA[WordPress Plug-ins]]></category>
		<category><![CDATA[sharing]]></category>
		<category><![CDATA[social bookmarking]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">https://www.heidicool.com/samplewordpress/?p=172</guid>
		<description><![CDATA[If you have a blog then you probably want your readers to share your links via social media. There are quite a few social media bookmarking plug-ins to choose from, but Sociable includes a large array of bookmarks and is very easy to set up. <a href="https://www.heidicool.com/samplewordpress/2010/11/18/sociable-for-wordpress-30/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>If you have a blog then you probably want your readers to share your links via social media. There are quite a few social media bookmarking plug-ins to choose from, but Sociable includes a large array of bookmarks and is very easy to set up. In the settings you simply choose which social media services you want to include. The Pro version includes additional features such as the ability to choose from different icon sets.</p>
<p>The default icons that come with Sociable are somewhat small, so I replaced mine with different icons. To do that just find some icons you like, name them to match the ones that come with Sociable and replace those with your new ones. Your icons are stored in the Plugins folder. Go to Sociable-30 > images > default > 16 to find them. </p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/sociable-30/">WordPress Plugin Directory: Sociable for WordPress 3.0</a></li>
<li><a href="http://wpplugins.com/plugin/155/sociable-pro">Sociable for WordPress 3.0 Home Page</a></li>
</ul>
<h5>Easy Websites with WordPress - Adding the Sociable Plugin </h5>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="580" height="460" id="myFlashContent">

<param name="movie" value="http://www.youtube.com/v/ShT0B9DBQYI?fs=1&amp;hl=en_US" />
<param name="wmode" value="opaque" />
<!--[if !IE]>-->

<object type="application/x-shockwave-flash" data="http://www.youtube.com/v/ShT0B9DBQYI?fs=1&amp;hl=en_US" width="580" height="460">

<param name="wmode" value="opaque" />
<!--<![endif]-->
<a href="http://www.adobe.com/go/getflashplayer">
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
</a> This is a video about Sociable 3.0
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>]]></content:encoded>
			<wfw:commentRss>https://www.heidicool.com/samplewordpress/2010/11/18/sociable-for-wordpress-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
