<?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>ComputerChimp.com &#187; WordPress</title> <atom:link href="http://computerchimp.com/category/wordpress/feed" rel="self" type="application/rss+xml" /><link>http://computerchimp.com</link> <description>Computer Basics for Beginners</description> <lastBuildDate>Mon, 14 Jun 2010 12:10:06 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.1</generator> <item><title>Tweaking Your Blog Design with CSS</title><link>http://computerchimp.com/wordpress/tweaking-your-blog-design-with-css.html</link> <comments>http://computerchimp.com/wordpress/tweaking-your-blog-design-with-css.html#comments</comments> <pubDate>Sun, 14 Jun 2009 12:48:21 +0000</pubDate> <dc:creator>Joe Kraynak</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Thesis]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[CSS]]></category><guid
isPermaLink="false">http://computerchimp.com/?p=267</guid> <description><![CDATA[Behind every WordPress blog is a theme that controls the look and layout of the blog. As I explain in &#8220;Make a Website, Changing the Look and Layout with a WordPress Theme,&#8221; you can change the entire look and layout of your WordPress blog by installing and activating a different theme. Every theme contains one [...]]]></description> <content:encoded><![CDATA[<p></p><p>Behind every WordPress blog is a <em>theme</em> that controls the look and layout of the blog. As I explain in &#8220;<a
href="http://computerchimp.com/website/make-a-website-changing-the-look-and-layout-with-a-wordpress-theme.html">Make a Website, Changing the Look and Layout with a WordPress Theme</a>,&#8221; you can change the entire look and layout of your WordPress  blog by installing and activating a different theme.</p><p>Every theme contains one or more CSS (Cascading Style Sheets). Each stylesheet contains codes that tell Web browsers how to display particular elements on your blog, including text, images, sidebars, headers, and footers. CSS codes are structured something like this:</p><p><code>selector { property: value; }</code></p><p>The <em>selector</em> indicates the element that the style applies to (such as a heading, paragraph, or image), the <em>property</em> defines the aspect of the object that will be modified (such as its color or alignment), and the <em>value</em> defines the setting for the property (such as blue or center). Here&#8217;s an example:</p><p><code>h3 {color: #0033FF; font-size: 22px; font-family: Arial; padding-bottom: 20px; }</code></p><p>This &#8220;style&#8221; tells Web browsers to display any text formatted as a Heading 3 (using the HTML tag &lt;h3&gt;) as blue, 22 pixels, Arial followed by 20 pixels of blank space below it.</p><p>As you&#8217;re composing blog entries, any text you format as a Heading 3 will be formatted according to the CSS property values assigned to it. You can change the appearance of all Heading 3 items in your blog simply by editing the h3 entry in your blog&#8217;s stylesheet as explained later in this post.</p><blockquote><p><strong>Tip</strong><br
/> For a list of CSS properties and values associated with each property, check out the W3 School&#8217;s <a
href="http://www.w3schools.com/css/css_reference.asp">CSS Reference</a>.</p></blockquote><h3>Understanding CSS Selectors</h3><p>A CSS selector indicates the type of object each property value is applied to. Common selectors include&#8230;</p><ul><li><strong>p</strong> for paragraphs</li><li><strong>img</strong> for images</li><li><strong>h1</strong>, <strong>h2</strong>, <strong>h3</strong>, <strong>h4</strong>, <strong>h5</strong>&#8230; for headings</li><li><strong>ul</strong> for unnumbered (bulleted) lists</li><li><strong>ol</strong> for numbered lists</li><li><strong>li</strong> for items in a list</li></ul><p>This is pretty simple stuff, but CSS complicates things by allowing for a couple different types of selectors, as described in the following sections.</p><blockquote><p><strong>Tip</strong><br
/> You can group selectors to apply property values to two or more elements. For example, h1, h2, h3, h4, h5 {color:blue; } would make all headings numbered 1-5 blue.</p></blockquote><h4>Class Selectors</h4><p>A <em>class selector</em> enables you to create multiple style rules for a given element. For example, you can create three paragraph classes – <strong>p.left {text-align: left}</strong>, <strong>p.center {text-align: center}</strong>, and <strong>p.right {text-align: right}</strong>. When composing your blog entry, you can add the <em>class attribute</em> to a paragraph&#8217;s opening tag to specify which class you want to apply, for example >&lt;p class=&#8221;center&#8221;&gt;.</p><p>You can also create a class that is not associated with any given element by omitting the element designation from the selector. For example, you can create a <strong>.center {text-align: center}</strong> class, which you can then apply to any text element, such as paragraphs, images, headings, addresses, and definitions. For example, &lt;img class=&#8221;center&#8221; src=&#8221;http://www.mydomain.com/images/image.jpg&#8221; /&gt; would center an image while &lt;p class=&#8221;center&#8221;&gt; would center a paragraph.</p><h4>ID Selectors</h4><p>ID selectors are similar to class selectors, but they use a pound sign (#) instead of a period and apply formatting to only a single occurrence of a specific element. For example, you can apply <strong>p#footer {font-size: small; font-style: italic}</strong> to a paragraph at the bottom of a page to display the paragraph as a footer in small, italic text.</p><p>Some theme designers use the ID selector to apply different formatting for different sections of the blog; for example, <strong>#content li</strong> to control the appearance of list items in the content area and <strong>#l_sidebar li</strong> to control the appearance of list items in the left sidebar.</p><h4>CSS Comments</h4><p>Most WordPress stylesheets include <em>comments</em> that serve no other purpose than to provide information to anyone who may want to edit the file, including you. Comment text is marked with a forward slash followed by an asterisk, like this:</p><p><code>/* This is a comment. */</code></p><p>Comments usually designate groups of CSS formatting codes. For example, the designer may include a comment before each group of codes that apply to the header, footer, and content area. You can learn a great deal about how a designer formatted particular elements by reading the comments.</p><blockquote><p><strong>Tip</strong><br
/> It&#8217;s a good idea to insert a comment describing any changes you make to your blog&#8217;s stylesheet, so you can easily change the setting back if something goes wrong. At least make a note of any changes.</p></blockquote><h3>Editing Styles in WordPress</h3><p>You can edit your blog&#8217;s stylesheet and other files that comprise the theme you&#8217;re using from within WordPress. Here&#8217;s what you do:</p><ul><li>Log in to WordPress as you normally do. The WordPress Dashboard appears.</li><li>Click <strong>Appearance</strong> and then <strong>Editor</strong>. The contents of your blog&#8217;s stylesheet should appear. If it doesn&#8217;t, click the <strong>Stylesheet</strong> link under Styles.</li><li>Edit the styles as desired. (Editing styles is like editing any text document.)</li><li>Click the <strong>Update File</strong> button to save your changes.</li></ul><h3>Editing Styles in Thesis</h3><p>If you&#8217;re using the <a
title="Thesis Theme" href="http://diythemes.com/?a_aid=JoeKraynak">Thesis theme</a> (which I use on this blog as well as most of the blogs I manage), editing styles is a little more complicated at first, but after you learn the basics, managing your styles with Thesis is actually easier. The difference is that Thesis discourages users from editing the stylesheet directly. Instead, you leave the stylesheet as is and enter any changes in a separate Thesis <em>custom stylesheet</em>. This way, if you make a mistake, you know exactly where to find it – in the custom stylesheet.</p><blockquote><p><strong>Tip</strong><br
/> The Thesis how-to manual tells you to download the file you want to edit, open it in a text editor, make your changes, and then upload the file. A better way is to install the Thesis OpenHook plugin.</p><p>With Thesis OpenHook, you can edit the custom stylesheet from WordPress rather than having to open the custom.css file in a separate editor. After installing and activating OpenHook, click <strong>Appearance</strong> in the WordPress Dashboard, click <strong>Thesis OpenHook</strong>, and then scroll down to the Custom Stylesheet box to view or edit the contents of custom.css.</p><p>If you don&#8217;t like that idea, consider using your hosting service&#8217;s file manager. In <a
title="Bluehost" href="http://www.BlueHost.Com/track/joekraynak">Bluehost</a> (the hosting service I use), you can login, click File Manager, and use it to navigate to the folder that contains the custom.css file: <strong>/wp-content/themes/thesis-15/custom</strong>. You can then click the custom.css file and click the <strong>Edit</strong> button in the toolbar at the top to open the file in the Bluehost Text Editor and make your changes online. I&#8217;ve used GoDaddy, and it has its own editor, too. Other tools are available that simplify the process of editing files online.</p></blockquote><h4>Using the Custom Stylesheet</h4><p>To use the custom stylesheet, log into WordPress and then click <strong>Appearance</strong>, <strong>Thesis Options</strong>, <strong>Custom Stylesheet</strong>, and make sure <strong>Use custom stylesheet</strong> is checked. With the custom stylesheet enabled, you can use the &#8220;custom&#8221; class selector to override any existing style for any selector.</p><blockquote><p><strong>Tip</strong><br
/> Before editing custom.css, check the Thesis Options and Design Options settings to determine whether you can make your adjustments using the Thesis built-in control panels. You can make dozens of adjustments without having to edit the custom.css file.</p></blockquote><h4>Sample Edits</h4><p>Here are some of the easy changes I made to my custom.css file for my personal blog at <a
href="joekraynak.com/blog">joekraynak.com/blog</a> (above each is a comment explaining what the new CSS declaration does):</p><p><code>/*Remove padding above and to left of header*/</code><br
/> <code>.custom #header { padding-top: 0; padding-left: 0; }</code></p><p><code>/*Indent the tagline in the header 130px*/</code><br
/> <code>.custom #tagline { position: absolute; left: 130px; }</code></p><p><code>/*When images are left-aligned add no extra space to the left, top, or bottom but 1em space to the right*/</code><br
/> <code>.custom img.alignleft { margin: 0 1em 0 0; }</code></p><p><code>/*Separate list items by 10px space in the content area – does not affect list items in sidebars*/</code><br
/> <code>.custom #content li { padding-bottom: 10px; }</code></p><p><code>/*Reduce the space between widgets in the sidebars*/</code><br
/> <code>.custom li.widget { margin-bottom: 10px; }</code></p><blockquote><p><strong>Tip</strong><br
/> Before you can change the property of a selector, you need to know what the selector is, and finding out can be a real challenge. One of the best tools to use to identify selectors is an add-on program for Mozilla&#8217;s Firefox Web browser called Firebug.</p><p>You can download a free copy of <a
title="Download Firefox" href="http://www.mozilla.com/en-US/firefox/ie-bl.html">Firefox</a> and then download and install Firebug using the Firefox browser. Kristarella.com has posted an excellent video called &#8220;<a
title="How to Use Firebug for CSS" href="http://www.kristarella.com/2009/02/how-to-use-firebug-for-css/">How to Use Firebug for CSS</a>,&#8221; demonstrating how to use the Firefox/Firebug combo to examine and experiment with CSS selectors, properties, and values on your own blog as well as other people&#8217;s blogs.</p></blockquote> ]]></content:encoded> <wfw:commentRss>http://computerchimp.com/wordpress/tweaking-your-blog-design-with-css.html/feed</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Changing WordPress Blog Title, Tagline, Permalinks, and Admin Nickname</title><link>http://computerchimp.com/wordpress/changing-wordpress-blog-title-tagline-permalinks-and-admin-nickname.html</link> <comments>http://computerchimp.com/wordpress/changing-wordpress-blog-title-tagline-permalinks-and-admin-nickname.html#comments</comments> <pubDate>Wed, 03 Jun 2009 12:14:47 +0000</pubDate> <dc:creator>Joe Kraynak</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://computerchimp.com/?p=259</guid> <description><![CDATA[After installing WordPress, one of the first things you should do is make sure the blog title and tagline are correct and that the author name for your posts is exactly how you want it to appear. In this post, I show you how to access and change crucial WordPress settings: In your Web browser, [...]]]></description> <content:encoded><![CDATA[<p></p><p>After installing WordPress, one of the first things you should do is make sure the blog title and tagline are correct and that the author name for your posts is exactly how you want it to appear. In this post, I show you how to access and change crucial WordPress settings:</p><ol><li>In your Web browser, type the address of your blog, followed by a forward slash and <strong>wp-admin</strong> and press <strong>Enter</strong>. For example, you might type <em>yourdomain.com/blog/wp-admin</em> and press <strong>Enter</strong>. The WordPress Dashboard appears.</li><li>Click <strong>Settings</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/wpsettings/wpsettings01.jpg" alt="" /></p><li>Make sure the blog title and tagline are as you want them to appear in your blog header and click <strong>Save Changes</strong>. (Even if you use a header image instead of text, the blog title and tagline are important for search engines.)</li><p><img
class="aligncenter" src="http://computerchimp.com/images/wpsettings/wpsettings02.jpg" alt="" /></p><li>Under <strong>Settings</strong>, click <strong>Permalinks</strong>.</li><li>Select <strong>Custom Structure</strong>, type <strong>/%category%/%postname%.html</strong> in the text box and click <strong>Save Changes</strong>. This displays the title of the blog post in its address rather than just a number. For example, instead of displaying <em>http://www.yourdomain.com/?p=123</em> in the address bar, the address may appear as <em>http://www.yourdomain.com/wildlife/save-rain-forests.html</em>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/wpsettings/wpsettings03.jpg" alt="" /></p><li>Click <strong>Users</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/wpsettings/wpsettings04.jpg" alt="" /></p><li>Rest the mouse pointer on your username and click <strong>Edit</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/wpsettings/wpsettings05.jpg" alt="" /></p><li>In the <strong>Nickname</strong> box, highlight admin, type the name you want to appear whenever you post an entry, and click <strong>Save Changes</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/wpsettings/wpsettings06.jpg" alt="" /></p><li>Open the <strong>Display name publicly as</strong> drop-down list and click the new nickname you created.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/wpsettings/wpsettings07.jpg" alt="" /></p><li>Under <strong>Contact Info</strong>, make sure WordPress is set up to send notifications to the correct email address you want to use.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/wpsettings/wpsettings08.jpg" alt="" /></p><li>Click <strong>Save Changes</strong>.</li></ol> ]]></content:encoded> <wfw:commentRss>http://computerchimp.com/wordpress/changing-wordpress-blog-title-tagline-permalinks-and-admin-nickname.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Make a Website: Creating a Static Home Page in WordPress</title><link>http://computerchimp.com/website/make-a-website-creating-a-static-home-page-in-wordpress.html</link> <comments>http://computerchimp.com/website/make-a-website-creating-a-static-home-page-in-wordpress.html#comments</comments> <pubDate>Fri, 29 May 2009 18:18:13 +0000</pubDate> <dc:creator>Joe Kraynak</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Thesis]]></category> <category><![CDATA[Website]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[Create a Blog]]></category> <category><![CDATA[Create Website]]></category><guid
isPermaLink="false">http://computerchimp.com/?p=254</guid> <description><![CDATA[In this series, I’ve been teaching the basics of making a combination website/blog using Bluehost, WordPress, and Thesis. Here’s what I’ve covered so far: In Part I: Starting with Bluehost, I showed you how to open a Bluehost account, register your own domain name, and install WordPress. In Part II: Changing the Look and Layout [...]]]></description> <content:encoded><![CDATA[<p></p><p>In this series, I’ve been teaching the basics of making a combination website/blog using Bluehost, WordPress, and Thesis. Here’s what I’ve covered so far:</p><ul><li>In <a
href="http://computerchimp.com/website/make-a-website-starting-with-bluehost.html">Part I: Starting with Bluehost</a>, I showed you how to open a Bluehost account, register your own domain name, and install WordPress.</li><li>In <a
href="http://computerchimp.com/website/make-a-website-changing-the-look-and-layout-with-a-wordpress-theme.html">Part II: Changing the Look and Layout with a WordPress Theme</a>, I discussed WordPress themes and showed you how to transform the look and layout of your website/blog simply by selecting a different theme.</li><li>In <a
href="http://computerchimp.com/website/make-a-website-essential-wordpress-plugins.html">Part III: Essential WordPress Plugins</a>, I introduced you to WordPress plug-ins – small programs that add features to WordPress – and revealed my eight favorite plugins.</li></ul><p>In this part, I finally get around to showing you how to create a static home page in WordPress, so your blog can act like a website and vice versa. When people go to your site, they&#8217;ll be greeted by whatever you choose to include on your static home page and can then click a tab to access your blog. With recent versions of WordPress, the process is pretty simple (requires WordPress 2.3.1 or later):</p><ol><li>Create the <em>page</em> you want to appear as your home page. (Make sure it&#8217;s a page, not a post.)</li><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage01.jpg" alt="Create the page you want to use as your static home page." /></p><li>Scroll down to the Discussion options and remove the checks next to <strong>Allow comments</strong> and <strong>Allow pings</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage02.jpg" alt="Disable comments and pings for this page." /></p><li>Click the <strong>Publish</strong> button to publish your new page.</li><li>Create and publish a blank page to use for your blog, and call it something like Blog or Nick&#8217;s Blog, whatever.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage03.jpg" alt="Create a blank page for your blog." /></p><li>In the WordPress Options or Settings group (on the Administration panel), click <strong>Reading</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage04.jpg" alt="Under Settings, click Reading." /></p><li>Under <strong>Front page</strong>, click the <strong>Static page</strong> option.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage05.jpg" alt="Choose the pages to use for the static home page and blog posts." /></p><li>Open the <strong>Front page</strong> list and choose the page you want to use as your static home page.</li><li>Open the <strong>Post page</strong> list and choose the page you want to use to display your blog posts.</li><li>Save your changes.</li></ol><p>If you&#8217;re using Thesis, you need to choose to have new pages displayed as tabs in the navigation bar:</p><ol><li>On the WordPress Administration panel, click <strong>Appearance</strong>, <strong>Thesis Options</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage06.jpg" alt="Select Thesis Options." /></p><li>Under <strong>Navigation Menu</strong> click the plus sign next to <strong>Select pages to include in nav menu</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage07.jpg" alt="Checkmark the new pages to appear in the navigation bar." /></p><li>Check the box next to the blog page you created. Do not check the box next to the new home page you created. As long as you have the option checked to show the home link in the nav menu (see the following step), a tab for the page will appear.(Optional) In the list of pages, you can drag pages up or down to rearrange the order they will appear in your navigation bar.</li><li>Click the plus sign next to <strong>Home Link</strong> and make sure the <strong>Show home link in nav menu</strong> option is checked. You can edit the link&#8217;s name to something different for the link than you used for the page name.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage09.jpg" alt="Checkmark Show home link in nav menu." /></p><li>Click the <strong>Save</strong> button.</li></ol><p>Your new static home page now opens whenever someone chooses to go to your site, and they can click your new Blog tab to go to your blog.</p><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage08.jpg" alt="Your new static page greets visitors who can click the new blog tab." /></p><p>You&#8217;ll find other tutorials about this topic that recommend creating a separate template, which you can do if you want to give your home page a unique appearance, but I think most folks just want to have a static page with some unique content to greet visitors.</p><p>For more about using Thesis to design your website or blog, check out <a
href="http://joekraynak.com/blog/computers/redesigning-my-wordpress-blog-with-thesis.html">Redesigning My WordPress Blog with Thesis</a>.</p><p>This completes my four-part series on creating a combination website/blog with Bluehost, WordPress, and Thesis, but I&#8217;m not quite finished yet. In future posts, I&#8217;ll be introducing the basics of HTML (HyperText Markup Language) and CSS (Cascading Style Sheets) and showing you how to make some additional modifications to your blog. Although you can blog without knowing anything about HTML and CSS, knowing the basics can help you troubleshoot common problems and tweak your blog design to suit your tastes.</p> ]]></content:encoded> <wfw:commentRss>http://computerchimp.com/website/make-a-website-creating-a-static-home-page-in-wordpress.html/feed</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Make a Website: Essential WordPress Plugins</title><link>http://computerchimp.com/website/make-a-website-essential-wordpress-plugins.html</link> <comments>http://computerchimp.com/website/make-a-website-essential-wordpress-plugins.html#comments</comments> <pubDate>Wed, 27 May 2009 19:31:42 +0000</pubDate> <dc:creator>Joe Kraynak</dc:creator> <category><![CDATA[Thesis]]></category> <category><![CDATA[Website]]></category> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://computerchimp.com/?p=250</guid> <description><![CDATA[In this series, I’ve been teaching the basics of making a combination website/blog using Bluehost, WordPress, and Thesis. In Part I, I showed you how to get started with Bluehost, register your own domain name, and install WordPress. In Part II, I discussed WordPress themes and showed you how to transform the look and layout [...]]]></description> <content:encoded><![CDATA[<p></p><p>In this series, I’ve been teaching the basics of making a combination website/blog using Bluehost, WordPress, and Thesis. In <a
href="http://computerchimp.com/website/make-a-website-starting-with-bluehost.html">Part I</a>, I showed you how to get started with Bluehost, register your own domain name, and install WordPress. In <a
href="http://computerchimp.com/website/make-a-website-changing-the-look-and-layout-with-a-wordpress-theme.html">Part II</a>, I discussed WordPress themes and showed you how to transform the look and layout of your website/blog simply by selecting a different theme. In this part, I introduce WordPress plug-ins – small programs that add features to WordPress.</p><h3>My Top 8 WordPress Plugins</h3><p>On almost every website/blog I manage, I install the following WordPress plugins:</p><ul><li><strong>Askimet:</strong> Included as part of the WordPress package, Askimet helps prevent comment spam.</li><li><strong>Multi-level Navigation Plugin:</strong> This adds a drop-down menu to your blog. Check out <a
href="http://joekraynak.com/blog">JoeKraynak.com/blog</a> to see the menu in action.</li><li><strong>My Page Order:</strong> Provides a tool that enables you to drag-and-drop pages to rearrange their order. (If you use the Thesis theme, this plugin is unnecessary, because the function is built right into the theme.)</li><li><strong>Peter’s Custom Anti-Spam:</strong> This plugin requires visitors to type a key word in order to post a comment. This cuts down considerably on comment spam.</li><li><strong>Secure and Accessible PHP Contact Form:</strong> This allows people to contact me while protecting my email address. A lot of people place their email address right on their site, which makes it easy pickin’s for spammers. If you want people to contact you via email, I recommend you use a form like this one.</li><li><strong>Simple Trackback Validation:</strong> This plugin ensures that sites linking back to your posts actually have a verifiable link back to your blog. This prevents spam trackbacks.</li><li><strong>Thesis OpenHook:</strong> OpenHook makes it much easier to configure Thesis. If you don’t use the WordPress Thesis theme, however, you don’t need this plugin.</li><li><strong>SEO Title Tag:</strong> The SEO (Search Engine Optimization) Title Tag gives you the power to change the title of a page or post to anything you want. The title tag appears in the Web browser&#8217;s title bar when the page or post is open and is used by search engines (like Google and Yahoo!) to index the pages. The Thesis theme has its own title tag feature, along with other SEO tools, so if you&#8217;re using the Thesis theme, I recommend against installing or using the SEO Title Tag plugin.</li></ul><blockquote><p><strong>Tip:</strong> When assigning a title tag, start with a word or phrase that best describes the content of the post or page. You can then follow up with other key words and phrases, such as the title of your blog.</p></blockquote><h3>Finding and Installing Plugins</h3><p>Recent versions of WordPress have made it very easy to find and install plugins. Here&#8217;s what you do:</p><ol><li>Log in to WordPress.</li><li>Scroll down the Dashboard and click <strong>Plugins</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost21.jpg" alt="" /></p><li>Scroll down the Plugins page to the Get More Plugins section.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost22.jpg" alt="" /></p><li>Click <strong>Plugin Browser/Installer</strong>.</li><li>Click in the search box, type the name of the plugin you&#8217;d like to install, and click <strong>Search</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost23.jpg" alt="" /></p><li>Click <strong>Install</strong> next to the plugin you&#8217;d like to install.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost24.jpg" alt="" /></p><li>Click the button to install the plugin and follow the onscreen instructions to complete the installation and activate the plugin.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost25.jpg" alt="" /></ol><blockquote><p>You can browse a large collection of plugins by visiting the <a
href="http://wordpress.org/extend/plugins/">WordPress Plugin Directory</a>. You can then download and install the plugin manually. However, I prefer to find the plugin I want and then follow the steps above to find and install the plugin from the WordPress Dashboard.</p></blockquote><h3>Configuring and Using Plugins</h3><p>No two plugins are alike. Some, you simply install and activate, and they do their thing behind the scenes. Others require some additional work. For example, if you install the Secure and Accessible PHP Contact Form, you need to create a page on which the form will reside. All plugins I&#8217;ve encountered include some instructions to get you started.</p><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost26.jpg" alt="" /></p><p>If you&#8217;re not all that into reading instructions, you can always try poking around first. In most cases, when you install a plugin, some additional options appear in the WordPress Dashboard that allow you to configure or use the plugin. Click Plugins, Appearance, Tools, Pages, or Settings to look for additional options. In some cases, the plugin adds its own group of options to the Dashboard. Where you find options or settings for the plugins, you&#8217;re also likely to find more information about those options and settings.</p><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost27.jpg" alt="" /></p><p>If you&#8217;re a WordPress user, please post the names and descriptions of your favorite WordPress plugins here along with a brief explanation of why you like each plugin.</p><p>In my next post, I&#8217;ll show you how to create a static opening page for your website/blog combination and have your blog appear on a separate tab. With recent versions of WordPress, creating a combination website/blog is not as difficult as it sounds. See &#8220;<a
title="Make a Static Home Page in WordPress" href="http://computerchimp.com/website/make-a-website-creating-a-static-home-page-in-wordpress.html">Make a Website: Creating a Static Home Page in WordPress</a>.&#8221;</p> ]]></content:encoded> <wfw:commentRss>http://computerchimp.com/website/make-a-website-essential-wordpress-plugins.html/feed</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Tweaking Blue Zinfandel Enhanced modified by CSOdessa</title><link>http://computerchimp.com/wordpress/tweaking-blue-zinfandel-enhanced-modified-by-csodessa.html</link> <comments>http://computerchimp.com/wordpress/tweaking-blue-zinfandel-enhanced-modified-by-csodessa.html#comments</comments> <pubDate>Thu, 20 Mar 2008 20:26:14 +0000</pubDate> <dc:creator>Joe Kraynak</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[Tweak WordPress Theme]]></category><guid
isPermaLink="false">http://computerchimp.com/wordpress/tweaking-blue-zinfandel-enhanced-modified-by-csodessa.html</guid> <description><![CDATA[June 29, 2009 update: Since posting this entry, I have redesigned this blog and others using the Thesis Theme, because it is easier to configure and provides additional tools for improving my blog. In creating this blog, I started with the 3-column version of the Blue Zinfandel Enhanced theme created by Brian Gardner. I like [...]]]></description> <content:encoded><![CDATA[<p></p><blockquote><p><strong>June 29, 2009 update:</strong> Since posting this entry, I have redesigned this blog and others using the <a
title="Thesis Theme" href="http://diythemes.com/?a_aid=JoeKraynak">Thesis Theme</a>, because it is easier to configure and provides additional tools for improving my blog.</p></blockquote><p>In creating this blog, I started with the 3-column version of the Blue Zinfandel Enhanced theme created by <a
href="http://www.briangardner.com/themes">Brian Gardner</a>. I like the 3-column layout he uses, because it allows me to present the main content in the middle, use one sidebar for the blogging stuff (like recent posts, categories, and the blogroll), and have an extra sidebar for whatever I want to display &#8211; in this case, cover images of books I&#8217;ve written.<span
id="more-8"></span></p><h2>CSOdessa Modification</h2><p>One of the problems I ran into with the original version of the template is that to change what appeared in the right sidebar, I had to edit three separate template files. That meant putting the &lt;img&gt; tags for the book covers in three different template files. Brian designed the template intentionally this way, because he wanted to be able to display different content in the sidebar depending on which page the visitor chose to open.</p><p>I searched the Web for some instructions on how to make the template function more like a standard template and finally stumbled upon a modified version of the template that went far beyond what I had expected: <a
href="http://conceptdraw.fileburst.com/Materials/blue-CSOdessaMod.zip">Blue Zinfandel Enhanced modified by CSOdessa</a>. In addition, this modified version is widget-enabled, which made it much easier to customize both the left and right sidebars.</p><h2>Adding Comments to Pages</h2><p>Another problem that I ran into with both Blue Zinfandel Enhanced and the modified version, was that I had trouble adding a comments box to static pages. With other WordPress Templates I&#8217;ve used, I could just open up the page.php template and add the following code:</p><p>&lt;?php comments_template(); // Get wp-comments.php template ?&gt;</p><p>The contents of my page.php file would then look something like this:</p><blockquote><p>&lt;?php get_header(); ?&gt;<br
/> &lt;?php include(TEMPLATEPATH.&#8221;/l_sidebar.php&#8221;);?&gt;<br
/> &lt;div id=&#8221;content&#8221;&gt;<br
/> &lt;div id=&#8221;contentmiddle&#8221;&gt;<br
/> &lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;<br
/> &lt;h1&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;<br
/> &lt;?php the_content(__(&#8216;Read more&#8217;));?&gt;<br
/> &lt;!&#8211;<br
/> &lt;?php trackback_rdf(); ?&gt;<br
/> &#8211;&gt;<br
/> <span
style="color: #0000ff;">&lt;?php comments_template(); // Get wp-comments.php template ?&gt;</span><br
/> &lt;?php endwhile; else: ?&gt;<br
/> &lt;p&gt;&lt;?php _e(&#8216;Sorry, no posts matched your criteria.&#8217;); ?&gt;&lt;/p&gt;&lt;?php endif; ?&gt;<br
/> &lt;/div&gt;<br
/> &lt;/div&gt;<br
/> &lt;?php include(TEMPLATEPATH.&#8221;/r_sidebar.php&#8221;);?&gt;<br
/> &lt;!&#8211; The main column ends  &#8211;&gt;<br
/> &lt;?php get_footer(); ?&gt;</p></blockquote><p>That sort of worked this time, but when I disabled comments for a particular page, I would get the &#8220;Comments closed&#8221; message, but the Comments form would still appear.</p><p>To fix this, I had to edit the comments.php file. I moved the following lines from near the middle to near the end, between the two closing &lt;/div&gt; codes:</p><blockquote><p>&lt;/div&gt; <br
/> <span
style="color: #0000ff;">&lt;!&#8211; If comments are open, but there are no comments. &#8211;&gt;</span><br
/> <span
style="color: #0000ff;">&lt;?php else : // comments are closed ?&gt;</span><br
/> <span
style="color: #0000ff;">&lt;!&#8211; If comments are closed. &#8211;&gt;</span><br
/> <span
style="color: #0000ff;">&lt;p class=&#8221;nocomments&#8221;&gt;Comments are closed.&lt;/p&gt;</span><br
/> <span
style="color: #0000ff;">&lt;?php endif; ?&gt;</span><br
/> <span
style="color: #0000ff;">&lt;?php endif; ?&gt;</span><br
/> <span
style="color: #0000ff;">&lt;?php if (&#8216;open&#8217; == $post-&gt; comment_status) : ?&gt;</span><br
/> <span
style="color: #0000ff;">&lt;?php endif; // If registration required and not logged in ?&gt;</span><br
/> <span
style="color: #0000ff;">&lt;?php endif; // if you delete this the sky will fall on your head ?&gt;<br
/> </span>&lt;/div&gt;</p></blockquote><p>This change seemed to do the trick.</p><p>I also changed the header from the modified version back to the original, which I prefer. I will be making additional tweaks later.</p><p>I take my hats off to people like Brian Gardner and the developers at CSOdessa. I can fiddle with these templates and make them work, but to design something from the ground up that works and is beautiful is a real art.</p> ]]></content:encoded> <wfw:commentRss>http://computerchimp.com/wordpress/tweaking-blue-zinfandel-enhanced-modified-by-csodessa.html/feed</wfw:commentRss> <slash:comments>4</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (user agent is rejected)
Database Caching 3/11 queries in 0.051 seconds using disk

Served from: computerchimp.com @ 2010-09-08 00:08:39 -->