<?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>John Nasta &#187; posts</title>
	<atom:link href="http://johnnasta.com/blog/tags/posts/feed/" rel="self" type="application/rss+xml" />
	<link>http://johnnasta.com/blog</link>
	<description>any major dude with half a heart surely will tell you my friend</description>
	<lastBuildDate>Mon, 14 May 2012 16:18:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Advanced Customizing of Atahualpa WordPress Theme</title>
		<link>http://johnnasta.com/blog/2010/wordpress/advanced-customizing-of-atahualpa-wordpress-theme/</link>
		<comments>http://johnnasta.com/blog/2010/wordpress/advanced-customizing-of-atahualpa-wordpress-theme/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 22:43:03 +0000</pubDate>
		<dc:creator>John Nasta</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[archives]]></category>
		<category><![CDATA[Atahualpa]]></category>
		<category><![CDATA[customizations]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[customizing]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://johnnasta.com/blog/?p=592</guid>
		<description><![CDATA[Atahualpa from Bytes For All just might be the most impressive free WordPress theme available to date. Much like the Thesis theme from DIY Themes, you get a complete back-end interface for customizing the theme. However, Thesis starts at $87 for the Personal license, and Atahualpa is free. The most important thing to know about [...]
Related posts:<ol>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-themes-reviews-alternate0/' rel='bookmark' title='WordPress Theme Review &#8211; Alternate0'>WordPress Theme Review &#8211; Alternate0</a> <small>Basically, unless you are a very good coder, you should forget that you ever heard...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/extend/themes/atahualpa" target="_blank">Atahualpa</a> from <a href="http://wordpress.bytesforall.com/" target="_blank">Bytes For All</a> just might be the most impressive free WordPress theme available to date.</p>
<p>Much like the <a href="http://diythemes.com/" target="_blank">Thesis</a> theme from DIY Themes, you get a complete back-end interface for customizing the theme. However, Thesis starts at $87 for the Personal license, and Atahualpa is free.</p>
<p>The most important thing to know about how to customize Atahualpa is that you can create your own PHP templates for pages such as multi-post archives (including category &amp; tag pages), search results, single posts, etc. People are often confused by the fact that the theme does not come with templates such as archive.php, search.php, single.php and others that you might expect, but what is not entirely obvious is that you can create these templates and upload them, and WordPress will automatically use them.</p>
<p><span id="more-592"></span></p>
<p>Take for instance one of the most popular questions asked about customizing Atahualpa in the <a href="http://forum.bytesforall.com/" target="_blank">BFA Forum</a>. How do I get Atahualpa to display full posts on archive pages instead of post excerpts? The answer is diabolically simple. Just download the index.php file from Atahualpa and save it as archive.php. Remove the part of the template that calls in The WordPress Loop:</p>
<p><code>&lt;?php /* This is the actual WordPress LOOP.<br />
The output can be edited at Atahualpa Theme Options -&gt; Style &#038; edit the Center column */<br />
bfa_center_content($bfa_ata['content_inside_loop']); ?&gt;</code></p>
<p>and replace it with loop code from the archive.php of a theme that displays full posts on the archive pages, such as the WordPress Default theme:</p>
<p><code>&lt;div &lt;?php post_class() ?&gt;&gt;<br />
				&lt;h3 id="post-&lt;?php the_ID(); ?&gt;"&gt;&lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark" title="Permanent Link to &lt;?php the_title_attribute(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h3&gt;<br />
				&lt;small&gt;&lt;?php the_time('l, F jS, Y') ?&gt;&lt;/small&gt;<br />
				&lt;div class="entry"&gt;<br />
					&lt;?php the_content() ?&gt;<br />
				&lt;/div&gt;<br />
				&lt;p class="postmetadata"&gt;&lt;?php the_tags('Tags: ', ', ', '&lt;br /&gt;'); ?&gt; Posted in &lt;?php the_category(', ') ?&gt; | &lt;?php edit_post_link('Edit', '', ' | '); ?&gt;  &lt;?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?&gt;&lt;/p&gt;<br />
			&lt;/div&gt;</code></p>
<p>You can edit this code as well. One thing you might want to do is replace <code>&lt;div class="entry"&gt;</code> with <code>&lt;div class="post-bodycopy"&gt;</code> so that the body text will follow the styling guidelines set by Atahualpa.</p>
<p>If you don&#8217;t want to display the time &amp; date above the post, simply move or remove <code>&lt;small&gt;&lt;?php the_time('l, F jS, Y') ?&gt;&lt;/small&gt;</code>. If you don&#8217;t want the meta data to appear below your posts, simply remove that whole paragraph.</p>
<p>If you are familiar with WordPress coding, then you know that <code>&lt;?php the_content() ?&gt;</code> is what displays the full post content.</p>
<p>When you are finished editing, just upload your new file and WordPress will recognize and use it.</p>
<p>This also applies to using plugins that require you to add a piece of PHP code to one of your template files that Atahualpa does not come with. If the template doesn&#8217;t exist, just create it, upload it, and WordPress will use it.</p>
<p>Diabolically simple, yet not obvious&#8230;</p>
<h6>This article copyright © John Nasta 2010 – All Rights Reserved</h6>
<p>Related posts:<ol>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-themes-reviews-alternate0/' rel='bookmark' title='WordPress Theme Review &#8211; Alternate0'>WordPress Theme Review &#8211; Alternate0</a> <small>Basically, unless you are a very good coder, you should forget that you ever heard...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://johnnasta.com/blog/2010/wordpress/advanced-customizing-of-atahualpa-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Excluding Your Web Site From Search Engines</title>
		<link>http://johnnasta.com/blog/2009/internet/seo-noindex-nofollow-noodp-noydir-noarchive-robotstxt-exclude-sites-from-search-engines/</link>
		<comments>http://johnnasta.com/blog/2009/internet/seo-noindex-nofollow-noodp-noydir-noarchive-robotstxt-exclude-sites-from-search-engines/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 00:03:12 +0000</pubDate>
		<dc:creator>John Nasta</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[noarchive]]></category>
		<category><![CDATA[noodp]]></category>
		<category><![CDATA[noydir]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[private]]></category>
		<category><![CDATA[protection]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[sites]]></category>
		<category><![CDATA[web sites]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://johnnasta.com/blog/?p=435</guid>
		<description><![CDATA[People often write about how to increase your search engine ranking by using noindex and nofollow meta tags to avoid indexing of links &#38; pages that lead to duplicate content, and robots.txt files to invite the search engines in, but what if you don&#8217;t want your site indexed at all? This is useful for private [...]
Related posts:<ol>
<li><a href='http://johnnasta.com/blog/2009/internet/seo-google-search-ranking-tips-title-and-title-tags/' rel='bookmark' title='SEO Google Search Ranking Optimization Tips &#8211; Titles and Title Tags'>SEO Google Search Ranking Optimization Tips &#8211; Titles and Title Tags</a> <small>Here is a Google SEO optimization technique that anyone can employ on just about any...</small></li>
<li><a href='http://johnnasta.com/blog/2010/wordpress/changing-the-url-of-your-wordpress-site/' rel='bookmark' title='Changing The URL Of Your WordPress Site'>Changing The URL Of Your WordPress Site</a> <small>WordPress web site owners often come to realize that they want to change the URL...</small></li>
<li><a href='http://johnnasta.com/blog/2009/internet/seo-avoiding-duplicates-with-canonical-url-tags/' rel='bookmark' title='SEO &#8211; Avoiding Duplicates with Canonical URL Tags'>SEO &#8211; Avoiding Duplicates with Canonical URL Tags</a> <small>You may have seen my article about the Ultimate Noindex Nofollow tool for WordPress, but...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>People often write about how to increase your search engine ranking by using noindex and nofollow meta tags to avoid indexing of links &amp; pages that lead to duplicate content, and robots.txt files to invite the search engines in, but what if you don&#8217;t want your site indexed at all? This is useful for private organizations and anyone who does not want their site indexed for any reason.</p>
<p>Noindex is fairly self explanatory. Simply put, a noindex tag tells the search engines not to index this page.</p>
<p>Nofollow is a similar tag. It tells the search engines not to follow any of the links on the page.</p>
<p>That&#8217;s just the beginning&#8230;</p>
<p><span id="more-435"></span></p>
<p>By adding this code to &lt;<code>head</code>&gt; section of all of your pages:</p>
<p>&lt;<code>meta name='robots' content='noindex,nofollow' /</code>&gt;</p>
<p>you can tell the search engines not to do either of the above.</p>
<p>You can also create a plain text file called robots.txt containing this code:</p>
<p><code>User-agent: *<br />
Disallow: /</code></p>
<p>Upload it to the root directory of your site. This will tell all &#8220;user agents&#8221; (a.k.a. search engines) to disallow indexing of all pages in the root directory as well as any directory within it.</p>
<p>So, what happens if you found this article too late and your site has already been indexed. How can you get it de-listed?</p>
<p>There are two answers&#8230;</p>
<p>The first is to upload the robots.txt file as described above. The next time your site is crawled, it will be removed from the index.</p>
<p>If you want your site removed from Google, and you can&#8217;t wait until the next time it&#8217;s crawled, sumbit a <a title="Google Urgent Removal Request" href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&#038;answer=156094" target="_blank">Google Urgent Removal Request</a>. Google says that this process will take 3 to 5 business days.</p>
<p>Is there more to the story? Of course there is!</p>
<p>You can also use this tag in the &lt;<code>head</code>&gt; section of your pages:</p>
<p>&lt;<code>meta name="robots" content="noodp,noydir,noarchive" /</code>&gt;</p>
<p>noodp &#8211; Prevents all search engines from using the DMOZ description for your site in the search results.</p>
<p>noydir &#8211; Prevents Yahoo! from using the Yahoo! directory description for your site in the search results.</p>
<p>noarchive &#8211; Prevents sites like archive.org and Google from putting copies of your pages into their archive or cache.</p>
<p>What about WordPress sites? You may have already noticed that you can click Settings &gt; Privacy and choose the &#8220;I would like to block search engines, but allow normal visitors&#8221; option. This will add noindex and nofollow tags to all of your site&#8217;s pages EXCEPT the Login and Forgot Password pages. A nice way to add these tags to those pages is to use the <a title="robots meta plugin" href="http://wordpress.org/extend/plugins/robots-meta/" target="_blank">Robots Meta plugin</a> by <a title="Joost de Valk" href="http://yoast.com" target="_blank">Joost de Valk</a>. This plugin actually does more than just that. Read the instructions for a better understanding of the plugin&#8217;s features.</p>
<p>So, now your site is not being indexed, but people can still link to it from other sites or manually type in the URL. What can you do about that?</p>
<p>WordPress users have the option of marking their pages and posts Private, which means that only those subscribers whose Role allows them to see those pages and posts can access them. There&#8217;s also the <a title="User Access Manager" href="http://wordpress.org/extend/plugins/user-access-manager/" target="_blank">User Access Manager</a> plugin that allows you to assign which subscribers can read selected pages and/or  posts. You can even assign people who are not subscribed and/or logged in by IP address or IP range.</p>
<p>Static sites can be password protected by putting a .htaccess file in the folder. If you don&#8217;t know how to create a .htaccess file, most commercial web hosts will do this for you via your Plesk or Control Panel interface.</p>
<p>Who would have thought that there&#8217;s as much involved in keeping people out of your site as there is in getting them to find it and come in?</p>
<h6>This article copyright © John Nasta 2009 &#8211; All Rights Reserved</h6>
<p>Related posts:<ol>
<li><a href='http://johnnasta.com/blog/2009/internet/seo-google-search-ranking-tips-title-and-title-tags/' rel='bookmark' title='SEO Google Search Ranking Optimization Tips &#8211; Titles and Title Tags'>SEO Google Search Ranking Optimization Tips &#8211; Titles and Title Tags</a> <small>Here is a Google SEO optimization technique that anyone can employ on just about any...</small></li>
<li><a href='http://johnnasta.com/blog/2010/wordpress/changing-the-url-of-your-wordpress-site/' rel='bookmark' title='Changing The URL Of Your WordPress Site'>Changing The URL Of Your WordPress Site</a> <small>WordPress web site owners often come to realize that they want to change the URL...</small></li>
<li><a href='http://johnnasta.com/blog/2009/internet/seo-avoiding-duplicates-with-canonical-url-tags/' rel='bookmark' title='SEO &#8211; Avoiding Duplicates with Canonical URL Tags'>SEO &#8211; Avoiding Duplicates with Canonical URL Tags</a> <small>You may have seen my article about the Ultimate Noindex Nofollow tool for WordPress, but...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://johnnasta.com/blog/2009/internet/seo-noindex-nofollow-noodp-noydir-noarchive-robotstxt-exclude-sites-from-search-engines/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress Plugins &#8211; Caveats for Emptors</title>
		<link>http://johnnasta.com/blog/2009/wordpress/wordpress-plugins-caveats-for-emptors/</link>
		<comments>http://johnnasta.com/blog/2009/wordpress/wordpress-plugins-caveats-for-emptors/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 23:27:29 +0000</pubDate>
		<dc:creator>John Nasta</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[conflicts]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[event-calendar]]></category>
		<category><![CDATA[peters-login-redirect]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[registered]]></category>
		<category><![CDATA[registered-users-only]]></category>
		<category><![CDATA[restricted]]></category>
		<category><![CDATA[restrictions]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[weasels-login-redirection]]></category>
		<category><![CDATA[wordpress-users]]></category>
		<category><![CDATA[wp hashcash]]></category>

		<guid isPermaLink="false">http://johnnasta.com/blog/?p=399</guid>
		<description><![CDATA[Here&#8217;s a list of WordPress plugins that didn&#8217;t work out for me and why. Keep in mind that these plugins may have been updated since this writing and the very issues presented here may since have been fixed. Also remember that sometimes a plugin doesn&#8217;t work because of a conflict with another plugin, so these [...]
Related posts:<ol>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-plugins-user-access-manager-vs-role-manager/' rel='bookmark' title='WordPress Plugins &#8211; User Access Manager vs. Role Manager'>WordPress Plugins &#8211; User Access Manager vs. Role Manager</a> <small>Do you want to control access to your pages &amp; posts or your admin features?...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-user-access-management/' rel='bookmark' title='WordPress User Access Management'>WordPress User Access Management</a> <small>What&#8217;s the most fun you can have with a program that&#8217;s written for information sharing?...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-plugins-plugin-central/' rel='bookmark' title='WordPress Plugins &#8211; Plugin Central'>WordPress Plugins &#8211; Plugin Central</a> <small>The last time I recommended a plugin, it was Theme Test Drive by Vladimir Prelovac....</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a list of WordPress plugins that didn&#8217;t work out for me and why. Keep in mind that these plugins may have been updated since this writing and the very issues presented here may since have been fixed. Also remember that sometimes a plugin doesn&#8217;t work because of a conflict with another plugin, so these things might not happen to you&#8230;</p>
<p><a title="Event Calendar" href="http://wordpress.org/extend/plugins/event-calendar/" target="_blank">Event Calendar 3</a> by Alex Tingle &#8211; This plugin was putting all event posts into the Uncategorized category by default. The category checkbox was grayed out and could not be unchecked.</p>
<p><a title="Registered Users Only" href="http://wordpress.org/extend/plugins/registered-users-only/" target="_blank">Registered Users Only</a> by Viper007Bond &#8211; This plugin caused users who had already logged in (including myself) to get kicked back to the login screen when clicking links within the site. Also, a user who I have never met said that he went to my login screen and my user name was pre-filled in the dialog box. He couldn&#8217;t have made this up because my user name is not even a real word, yet he knew what it was.</p>
<p><span id="more-399"></span></p>
<p><a title="Role Manager" href="http://www.im-web-gefunden.de/wordpress-plugins/role-manager/" target="_blank">Role Manager</a> &#8211; This a great plugin that works perfectly. Just be aware that changing the roles and capabilities may cause conflicts with other plugins that reference the roles. Also keep in mind that deactivating this plugin does not undo whatever changes you&#8217;ve made with it, and some changes can&#8217;t be undone. Use with extreme caution.</p>
<p><a title="Weasel's Login Redirect" href="http://wordpress.org/extend/plugins/weasels-login-redirection/" target="_blank">Weasel&#8217;s Login Redirect</a> by Andy Moore &#8211; This plugin requires the Role Manager plugin (see above) or it will not work. Modifying the roles can cause conflicts with other plugins that reference the roles such as WordPress Users, Profiler, and Subscribe 2. Therefore I do not recomment using it. Instead, I highly recommend <a title="Peter's Login Redirect" href="http://wordpress.org/extend/plugins/peters-login-redirect/" target="_blank">Peter&#8217;s Login Redirect</a>, as it does not require any other plugins to work, does not require modifying any roles, and lets you assign multiple redirects (i.e. by Username, Role, Specific Admin capability, or by All Other Users who do not meet the aforementioned criteria).</p>
<p><a title="Wordpress Users" href="http://wordpress.org/extend/plugins/wordpress-users/" target="_blank">WordPress Users</a> by Jonathan Kemp &#8211; This a great plugin that works perfectly. Just be aware that you may have to add a class to your CSS to get the user listing to display the way you want it to.</p>
<p><a title="WP Hashcash" href="http://wordpress.org/extend/plugins/wp-hashcash/" target="_blank">WP Hashcash</a> by ecb29, donncha &#8211; As far as I (and apparently other people as well) can tell, this plugin marks every comment as spam, thus defeating its own purpose.</p>
<p>This will be a cumulative list. I will update it as things come up. Hopefully it will not turn out to be a long list.</p>
<h6>This article copyright © John Nasta 2009 &#8211; All Rights Reserved</h6>
<p>Related posts:<ol>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-plugins-user-access-manager-vs-role-manager/' rel='bookmark' title='WordPress Plugins &#8211; User Access Manager vs. Role Manager'>WordPress Plugins &#8211; User Access Manager vs. Role Manager</a> <small>Do you want to control access to your pages &amp; posts or your admin features?...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-user-access-management/' rel='bookmark' title='WordPress User Access Management'>WordPress User Access Management</a> <small>What&#8217;s the most fun you can have with a program that&#8217;s written for information sharing?...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-plugins-plugin-central/' rel='bookmark' title='WordPress Plugins &#8211; Plugin Central'>WordPress Plugins &#8211; Plugin Central</a> <small>The last time I recommended a plugin, it was Theme Test Drive by Vladimir Prelovac....</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://johnnasta.com/blog/2009/wordpress/wordpress-plugins-caveats-for-emptors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plugins &#8211; User Access Manager vs. Role Manager</title>
		<link>http://johnnasta.com/blog/2009/wordpress/wordpress-plugins-user-access-manager-vs-role-manager/</link>
		<comments>http://johnnasta.com/blog/2009/wordpress/wordpress-plugins-user-access-manager-vs-role-manager/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 22:01:43 +0000</pubDate>
		<dc:creator>John Nasta</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[groups]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[read]]></category>
		<category><![CDATA[role-manager]]></category>
		<category><![CDATA[roles]]></category>
		<category><![CDATA[user-access-manager]]></category>
		<category><![CDATA[users]]></category>

		<guid isPermaLink="false">http://johnnasta.com/blog/?p=390</guid>
		<description><![CDATA[Do you want to control access to your pages &#38; posts or your admin features? There are plugins to fulfill these desires, but they come with some caveats&#8230; If you just want to control access to your pages &#38; posts, the way to go is User Access Manager. This allows you to set up posts [...]
Related posts:<ol>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-user-access-management/' rel='bookmark' title='WordPress User Access Management'>WordPress User Access Management</a> <small>What&#8217;s the most fun you can have with a program that&#8217;s written for information sharing?...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-cms-user-access-levels/' rel='bookmark' title='WordPress CMS &#8211; User Access Levels'>WordPress CMS &#8211; User Access Levels</a> <small>The more I use WordPress the more I like it. Recently I&#8217;ve been asked to...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-plugins-caveats-for-emptors/' rel='bookmark' title='WordPress Plugins &#8211; Caveats for Emptors'>WordPress Plugins &#8211; Caveats for Emptors</a> <small>Here&#8217;s a list of WordPress plugins that didn&#8217;t work out for me and why. Keep...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Do you want to control access to your pages &amp; posts or your admin features? There are plugins to fulfill these desires, but they come with some caveats&#8230;</p>
<p>If you just want to control access to your pages &amp; posts, the way to go is User Access Manager. This allows you to set up posts and pages that are only accessible by selected users. This is a great way to organize group projects or pages for individual clients, employees, etc.</p>
<p>What&#8217;s the caveat? Older versions of User Access Manager create a .htaccess file in your Media Library folder (wp-content/uploads) to control who has access to the contents of the media folders. The result is that media in your posts/pages appear to be broken. Deactivating those versions will not remove the .htaccess files. The simple answer is to make sure that you are using the latest version of the plugin, which gives you options to lock those files or not, and will automatically delete the .htaccess files when you deactivate it (special thanks to Alex &#8211; the plugin&#8217;s author &#8211; for that update).</p>
<p><span id="more-390"></span></p>
<p>If you want to control which roles have access to which admin features, then the way to go is Role Manager. This plugin allows you to see and modify all of the default roles and their associated capabilities. You can also create your own custom roles and capabilities, or assign new capabilities created by other plugins to the desired role(s).</p>
<p>What&#8217;s the caveat? The Role Manager plugin can interfere with other plugins that reference the user roles. For example, plugins like Profiler and WP Users allow you to check off which roles are to be displayed. If those roles have been modified, they are not recognized by these plugins and will not display. Also, like the User Access Manager, you can&#8217;t simply deactivate the Role Manager plugin and reset everything to the way it was before. Deactivating the plugin will leave the sites roles and capabilities however you last set them. So, you may want to make a note of what the default roles and capabilities are before you change them.</p>
<p>As people try to squeeze more advanced features out of a stock WordPress installation, they may find themselves in a situation that is difficult to get out of. What&#8217;s the answer? Start a development blog. This can be used as a &#8220;sandbox&#8221; where you can try things without fear of &#8220;blowing up&#8221; your production blog. After all, WordPress is free. You can go into Settings &gt; Privacy and mark your development blog private to hide it from search engines. You can also use plugins to hide your experimental pages and posts or prevent people from accessing the site without a login.</p>
<h6>This article copyright © John Nasta 2009 &#8211; All Rights Reserved</h6>
<p>Related posts:<ol>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-user-access-management/' rel='bookmark' title='WordPress User Access Management'>WordPress User Access Management</a> <small>What&#8217;s the most fun you can have with a program that&#8217;s written for information sharing?...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-cms-user-access-levels/' rel='bookmark' title='WordPress CMS &#8211; User Access Levels'>WordPress CMS &#8211; User Access Levels</a> <small>The more I use WordPress the more I like it. Recently I&#8217;ve been asked to...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-plugins-caveats-for-emptors/' rel='bookmark' title='WordPress Plugins &#8211; Caveats for Emptors'>WordPress Plugins &#8211; Caveats for Emptors</a> <small>Here&#8217;s a list of WordPress plugins that didn&#8217;t work out for me and why. Keep...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://johnnasta.com/blog/2009/wordpress/wordpress-plugins-user-access-manager-vs-role-manager/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>WordPress CMS &#8211; User Access Levels</title>
		<link>http://johnnasta.com/blog/2009/wordpress/wordpress-cms-user-access-levels/</link>
		<comments>http://johnnasta.com/blog/2009/wordpress/wordpress-cms-user-access-levels/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 16:21:08 +0000</pubDate>
		<dc:creator>John Nasta</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[private]]></category>
		<category><![CDATA[protection]]></category>
		<category><![CDATA[redirect]]></category>

		<guid isPermaLink="false">http://johnnasta.com/blog/?p=328</guid>
		<description><![CDATA[The more I use WordPress the more I like it. Recently I&#8217;ve been asked to do two web sites that have multiple access levels. One is for a graphic designer who wants a public site as well as things only her clients can see and things only her employees can see. The other is a [...]
Related posts:<ol>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-user-access-management/' rel='bookmark' title='WordPress User Access Management'>WordPress User Access Management</a> <small>What&#8217;s the most fun you can have with a program that&#8217;s written for information sharing?...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-plugins-user-access-manager-vs-role-manager/' rel='bookmark' title='WordPress Plugins &#8211; User Access Manager vs. Role Manager'>WordPress Plugins &#8211; User Access Manager vs. Role Manager</a> <small>Do you want to control access to your pages &amp; posts or your admin features?...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-plugins-caveats-for-emptors/' rel='bookmark' title='WordPress Plugins &#8211; Caveats for Emptors'>WordPress Plugins &#8211; Caveats for Emptors</a> <small>Here&#8217;s a list of WordPress plugins that didn&#8217;t work out for me and why. Keep...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The more I use WordPress the more I like it.</p>
<p>Recently I&#8217;ve been asked to do two web sites that have multiple access levels. One is for a graphic designer who wants a public site as well as things only her clients can see and things only her employees can see. The other is a private club that wants to give a very small amount of information to the public, and also wants separate access to information for two levels of membership. In both cases I used WordPress.</p>
<p><span id="more-328"></span></p>
<p>For the private club, I used the <a title="Role Manager" href="http://www.im-web-gefunden.de/wordpress-plugins/role-manager/" target="_blank">Role Manager</a> plugin to create a Subscriber level that has access to pages marked Private, and another that has access to pages and posts marked Private. Thereby I created two levels of private access. See my article titled &#8220;<a title="Caveats for Emptors" href="http://johnnasta.com/blog/2009/wordpress/wordpress-plugins-caveats-for-emptors/" target="_self">Caveats for Emptors</a>&#8221; for warnings about using the Role Manager plugin. You may prefer to use the <a title="User Access Manager" href="http://wordpress.org/extend/plugins/user-access-manager/">User Access Manager</a> plugin instead. I used it on the graphic designer&#8217;s site and will probably never use the Role Manager again.</p>
<p>To augment that, I added <a title="Login Redirect" href="http://wordpress.org/extend/plugins/peters-login-redirect/" target="_blank">Peter&#8217;s Login Redirect</a> plugin to both sites. This plugin allows you to redirect users to any page on the site by user name, role, numeric admin level, or &#8220;anyone else&#8221; (i.e. anyone not defined by the preceding criteria). The really nice thing about this plugin is not terribly obvious. If you have created a page or post that you only want one person or a defined group to see, you can send them there directly. Note that by default, links to pages marked Private will not appear in your WP navigation, and category links will only appear if there is at least one public post in the category. So, now you have a way of &#8220;hiding&#8221; information within your site. You could (for example) give your employees access to a category that contains protected posts about several projects and your clients a direct route to a specific page where their project is posted. Search  the <a title="Wordpress plugins" href="http://wordpress.org/extend/plugins/" target="_blank">WordPress plugins directory</a> for the words login redirect and you will find similar plugins that may better suit your specific purposes. Beware of Weasel&#8217;s Login Redirect as it requires the Role Manager plugin to work.</p>
<p>Finally in both cases I used the Hide dashboard plugin and removed the Meta links from the sidebar so that Subscriber-level  visitors won&#8217;t mess with the login profiles.</p>
<p>Thanks WordPress!</p>
<h6>This article copyright © John Nasta 2009 &#8211; All Rights Reserved</h6>
<p>Related posts:<ol>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-user-access-management/' rel='bookmark' title='WordPress User Access Management'>WordPress User Access Management</a> <small>What&#8217;s the most fun you can have with a program that&#8217;s written for information sharing?...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-plugins-user-access-manager-vs-role-manager/' rel='bookmark' title='WordPress Plugins &#8211; User Access Manager vs. Role Manager'>WordPress Plugins &#8211; User Access Manager vs. Role Manager</a> <small>Do you want to control access to your pages &amp; posts or your admin features?...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-plugins-caveats-for-emptors/' rel='bookmark' title='WordPress Plugins &#8211; Caveats for Emptors'>WordPress Plugins &#8211; Caveats for Emptors</a> <small>Here&#8217;s a list of WordPress plugins that didn&#8217;t work out for me and why. Keep...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://johnnasta.com/blog/2009/wordpress/wordpress-cms-user-access-levels/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>WordPress &#8211; Avoiding Microsoft code in posts &amp; pages</title>
		<link>http://johnnasta.com/blog/2009/wordpress/wordpress-avoiding-microsoft/</link>
		<comments>http://johnnasta.com/blog/2009/wordpress/wordpress-avoiding-microsoft/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 23:08:58 +0000</pubDate>
		<dc:creator>John Nasta</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[formatting]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://johnnasta.com/blog/?p=231</guid>
		<description><![CDATA[Those of you who like to copy &#38; paste your posts from Microsoft Word have probably noticed that doing so carries font &#38; formatting information into your blog along with the text. This can cause unexpected formatting problems, especially when inserting the &#8220;More&#8221; tag, changing themes, or when your content is reproduced in RSS readers [...]
Related posts:<ol>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-the-more-tag/' rel='bookmark' title='WordPress &#8211; the &#8220;More&#8221; tag'>WordPress &#8211; the &#8220;More&#8221; tag</a> <small>A few clients have asked me how to make only a short version of a...</small></li>
<li><a href='http://johnnasta.com/blog/2010/wordpress/advanced-customizing-of-atahualpa-wordpress-theme/' rel='bookmark' title='Advanced Customizing of Atahualpa WordPress Theme'>Advanced Customizing of Atahualpa WordPress Theme</a> <small>Atahualpa from Bytes For All just might be the most impressive free WordPress theme available...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Those of you who like to copy &amp; paste your posts from Microsoft Word have probably noticed that doing so carries font &amp; formatting information into your blog along with the text.</p>
<p>This can cause unexpected formatting problems, especially when inserting the &#8220;More&#8221; tag, changing themes, or when your content is reproduced in RSS readers or elsewhere.</p>
<p>The best way to avoid this is to copy &amp; paste your post in as plain text. In the &#8220;Edit&#8221; and &#8220;Add New&#8221; screens for both posts and pages, make sure you have Visual mode selected. In Visual mode you will see a row of icons for formatting your text. The farthest icon to the right is called &#8220;the kitchen sink&#8221;. Click that icon and a second row of icons appears. One of them is a clipboard with the letter T on it. That is the one for posting as plain text. That&#8217;s the one to use. To the right of that icon is a clipboard with a W on it. That one is for pasting from MS Word. It removes most of the Microsoft code but not all of it, and therefore I don&#8217;t recommend it.</p>
<p><span id="more-231"></span>If you need more text formatting options than your two rows of icons offer, download the <a title="TinyMCE Advanced" href="http://wordpress.org/extend/plugins/tinymce-advanced/" target="_blank">TinyMCE Advanced</a> plugin, which will give you icons for creating tables and other advanced formatting features.</p>
<p>So, you have a bunch of posts with all sorts of formatting code in them from Microsoft. How do you get rid of the &#8220;junk code&#8221;? Just highlight the entire post, and use the icon to the right of the &#8220;paste from Word&#8221; icon. It looks like a white eraser and if you hover your mouse over it, you&#8217;ll see that it says &#8220;Remove formatting&#8221;. Works like a charm! Switch from Visual to HTML mode and you&#8217;ll see that all the Microsoft code is gone.</p>
<p>If you generally don&#8217;t like the way a font displays within your theme, adjust it in the stylesheet, not within the post or page.</p>
<p>Keep it clean and simple!</p>
<h6>This article copyright © John Nasta 2009 &#8211; All Rights Reserved</h6>
<p>Related posts:<ol>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-the-more-tag/' rel='bookmark' title='WordPress &#8211; the &#8220;More&#8221; tag'>WordPress &#8211; the &#8220;More&#8221; tag</a> <small>A few clients have asked me how to make only a short version of a...</small></li>
<li><a href='http://johnnasta.com/blog/2010/wordpress/advanced-customizing-of-atahualpa-wordpress-theme/' rel='bookmark' title='Advanced Customizing of Atahualpa WordPress Theme'>Advanced Customizing of Atahualpa WordPress Theme</a> <small>Atahualpa from Bytes For All just might be the most impressive free WordPress theme available...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://johnnasta.com/blog/2009/wordpress/wordpress-avoiding-microsoft/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress &#8211; the &#8220;More&#8221; tag</title>
		<link>http://johnnasta.com/blog/2009/wordpress/wordpress-the-more-tag/</link>
		<comments>http://johnnasta.com/blog/2009/wordpress/wordpress-the-more-tag/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 23:55:40 +0000</pubDate>
		<dc:creator>John Nasta</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[abbreviated]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[more]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[read]]></category>
		<category><![CDATA[tags]]></category>

		<guid isPermaLink="false">http://johnnasta.com/blog/?p=211</guid>
		<description><![CDATA[A few clients have asked me how to make only a short version of a post appear on the default posts page, and have the user click to read the rest of the post. This allows your posts to be closer together on the home page, which means less scrolling for the reader. It also [...]
Related posts:<ol>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-avoiding-microsoft/' rel='bookmark' title='WordPress &#8211; Avoiding Microsoft code in posts &amp; pages'>WordPress &#8211; Avoiding Microsoft code in posts &#038; pages</a> <small>Those of you who like to copy &amp; paste your posts from Microsoft Word have...</small></li>
<li><a href='http://johnnasta.com/blog/2011/wordpress/a-quick-and-easy-way-to-make-photo-galleries-for-wordpress-using-photo-shop/' rel='bookmark' title='A Quick And Easy Way To Make Photo Galleries For WordPress'>A Quick And Easy Way To Make Photo Galleries For WordPress</a> <small>One of the great things about WordPress is how easy it is to create photo...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A few clients have asked me how to make only a short version of a post appear on the default posts page, and have the user click to read the rest of the post. This allows your posts to be closer together on the home page, which means less scrolling for the reader. It also prevents duplicated content and thereby keeps you off of Google&#8217;s Supplemental Index, which helps your search engine ranking.</p>
<p><span id="more-211"></span></p>
<p>The answer is to use the &#8220;Insert More Tag&#8221; icon, which is immediately to the left of the spell check icon when you add or edit a post in Visual mode (it looks like two sheets of paper separated by a horizontal dotted line), and the button with the word &#8220;more&#8221; on it in Visual mode. All you have to do is click the icon while your cursor is in the spot where you want the break. In order to avoid having your More tag appear in the wrong part of your code <strong>always</strong> insert it in HTML mode rather than in Visual mode. If you want it between paragraphs for example, make sure it is between your end paragraph tag and the next begin paragraph tag. If the paragraph tags are not showing, make sure you have a line break, then the tag, and then another line break.</p>
<p>Simple!</p>
<h6>This article copyright © John Nasta 2009 &#8211; All Rights Reserved</h6>
<p>Related posts:<ol>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-avoiding-microsoft/' rel='bookmark' title='WordPress &#8211; Avoiding Microsoft code in posts &amp; pages'>WordPress &#8211; Avoiding Microsoft code in posts &#038; pages</a> <small>Those of you who like to copy &amp; paste your posts from Microsoft Word have...</small></li>
<li><a href='http://johnnasta.com/blog/2011/wordpress/a-quick-and-easy-way-to-make-photo-galleries-for-wordpress-using-photo-shop/' rel='bookmark' title='A Quick And Easy Way To Make Photo Galleries For WordPress'>A Quick And Easy Way To Make Photo Galleries For WordPress</a> <small>One of the great things about WordPress is how easy it is to create photo...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://johnnasta.com/blog/2009/wordpress/wordpress-the-more-tag/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blogging &#8211; To page or to post?</title>
		<link>http://johnnasta.com/blog/2009/wordpress/blogging-to-page-or-to-post/</link>
		<comments>http://johnnasta.com/blog/2009/wordpress/blogging-to-page-or-to-post/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 17:56:59 +0000</pubDate>
		<dc:creator>John Nasta</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://johnnasta.com/blog/?p=53</guid>
		<description><![CDATA[So, you&#8217;ve got your blog up and running, and now it&#8217;s time to understand the difference between pages and posts. In terms of your site&#8217;s navigation, Pages stay in the same place all the time. Some themes make the links to Pages more prominent than other themes. Pages do no go out as part of [...]
Related posts:<ol>
<li><a href='http://johnnasta.com/blog/2009/wordpress/blogging-for-dollars/' rel='bookmark' title='Blogging for dollars'>Blogging for dollars</a> <small>Can you make money from your blog? The simple answer is yes. Can you make...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>So, you&#8217;ve got your blog up and running, and now it&#8217;s time to understand the difference between pages and posts.</p>
<p>In terms of your site&#8217;s navigation, Pages stay in the same place all the time. Some themes make the links to Pages more prominent than other themes. Pages do no go out as part of your RSS feed. Links to your Pages are on every page of your blog. So, the Pages feature is best used for permanent information and/or information that you want to always be readily accessible.</p>
<p><span id="more-53"></span>Posts are typically displayed in the order of newest first. As you add more posts, the older ones are moved off of the main page of your blog. After that, they have to be reached by a third-party search engine (Google, Yahoo, etc.), searching within the blog, or by clicking links to Archives or Categories. Assigning Posts to categories is a way of aggregating certain types of content within the blog, making similar information easier to find. Posts do go out as part of your RSS feed. Posts are better suited for current news and events.</p>
<p>One more thing to keep in mind is that with WordPress (and presumably other blogs as well) you can choose whether the main page of your blog shows the most recent posts or one of your pages.</p>
<p>That&#8217;s about it!</p>
<h6><em><em><em><em>This article copyright © John Nasta 2009 &#8211; All Rights Reserved</em></em></em></em></h6>
<p>Related posts:<ol>
<li><a href='http://johnnasta.com/blog/2009/wordpress/blogging-for-dollars/' rel='bookmark' title='Blogging for dollars'>Blogging for dollars</a> <small>Can you make money from your blog? The simple answer is yes. Can you make...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://johnnasta.com/blog/2009/wordpress/blogging-to-page-or-to-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

