<?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>CMS With Wordpress</title>
	<atom:link href="http://cmswithwordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cmswithwordpress.com</link>
	<description></description>
	<lastBuildDate>Fri, 04 Nov 2011 05:09:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Dreamweaver Templates into WordPress Themes</title>
		<link>http://cmswithwordpress.com/dreamweaver-templates-wordpress-themes/</link>
		<comments>http://cmswithwordpress.com/dreamweaver-templates-wordpress-themes/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 20:44:26 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>

		<guid isPermaLink="false">http://cmswithwordpress.com/?p=269</guid>
		<description><![CDATA[This tutorial explains how to convert a Dreamweaver Template to a WordPress Theme. Note: It helps if you are familiar with Dreamweaver Templates, HTML and CSS. If you think this tutorial is beyond your skill level, we can convert your Dreamweaver Template into a WordPress Theme. Let&#8217;s Get Started Through this process we&#8217;ll start by [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>This tutorial explains how to convert a <strong>Dreamweaver Template to a WordPress Theme</strong>.</p>
<p>Note: It helps if you are familiar with Dreamweaver Templates, HTML and CSS. If you think this tutorial is beyond your skill level, we can <a title="Eugene WordPress Website Design Experts" href="http://www.click-refresh.com/themes/"><strong>convert your Dreamweaver Template into a WordPress Theme</strong></a>.</p>
<h3>Let&#8217;s Get Started</h3>
<p>Through this process we&#8217;ll start by creating a blank Dreamweaver Templated page, we&#8217;ll detach it from the Dreamweaver Template, insert the WordPress loop, sidebar &amp; header code, adjust the stylesheet a bit and finally break the page into the various WordPress include files typically used in a WordPress theme.  We&#8217;ll be grabbing the WordPress loop, sidebar and header code from the Default WordPress Kubrick Theme and pasting it into the Dreamweaver Templated page.</p>
<p>I like to create a new page from the  Dreamweaver Template I plan to convert and name it index.html, then I detach the file from the template to remove all the extra Dreamweaver Template mark up.</p>
<p>If you get stumped or don&#8217;t understand a part of my explanation, please leave a comment with your issue and I&#8217;ll try and follow up.. I&#8217;m usually pretty fast to respond.</p>
<p><span id="more-269"></span></p>
<p><strong>Read the Primers in the Codex</strong><br />
I highly recommend you first read <a href="http://codex.wordpress.org/Theme_Development" target="_blank">Theme Development</a> and <a href="http://codex.wordpress.org/The_Loop" target="_blank">The WordPress Loop</a>&#8230; at least once.</p>
<p><strong>Optional Preliminary Step &#8211; Merge the Stylesheets<br />
</strong>You have two options when it comes to merging the stylesheets. Before converting your Dreamweaver Template into WordPress, you can sift through the Loop and Sidebar code from the default WordPress Theme, grab the needed formatting styles and paste them into your main stylesheet.</p>
<p>Your other option is to merge  the css code on the fly as you copy and paste from the Kubrick theme files.  If your main site stylesheet doesn&#8217;t already utilize content, sidebar and footer container div tags, you may want to create them and style them to your liking.  After you get your Dreamweaver / WordPress theme working you can go back and tweak your styles accordingly.<br />
<strong>Let&#8217;s Started Converting Your Dreamweaver Template<br />
</strong>Step 1- Theme Directory: Create a folder to hold your theme. Place it inside the themes directory, which is located inside of wp-content.. s o your folder structure should look something like: site folder &gt; wp-content &gt; themes &gt; your theme folder &gt; PHP ThemeFiles</p>
<p>Step 2 &#8211; The Style Sheet: If you don&#8217;t name your stylesheet correctly and add the comment tag markup at the top, your theme will not appear under your presentations tab.</p>
<ul>
<li>Rename your existing stylesheet as <strong>style.css</strong> and save it to your new WordPress theme folder.</li>
<li>Add this snippet of code to the very top of your stylesheet and fill in the info accordingly.</li>
<pre>/*
Theme Name: THEME NAME HERE
Theme URI: http://www.yourwebsite.com/
Description: Simple descriotion
Version: 1.0
Author: Sammy Russo
Author URI: http://Click-Refresh.com/
*/</pre>
</ul>
<p>Step 3 &#8211; Create an HTML File: As I mentioned above I like to start by creating a standard html file</p>
<ul>
<li>Click file &gt; new from template &gt; chose the template you want to use &gt; save as index.html into the theme folder</li>
<li>Click Modify&gt; Templates &gt; Detach from template</li>
<li>Update the link to the stylesheet to match that of the one we created in Step 2. For now make it absolute link so you&#8217;ll need to upload the css file to the server.</li>
</ul>
<p>Step 4 &#8211; Add Comment tags: I like to add comment tags in specific places to mark off the header,  the footer and sidebar sections.</p>
<ul>
<li>Your header comment tag can go just outside the closing head tag or if you have a horizontal top navigation, it can go just below the nav.. just place  it logically. I tend to place just outside the opening of the  div id content tag.
<pre>&lt;/head&gt;&lt;!-- End Header --&gt;</pre>
</li>
<li>Do the same for your sidebar and footer areas
<pre>&lt;!-- begin sidebar--&gt; &lt;!--begin footer --&gt;</pre>
</li>
<li>Finally add a comment tag for the WP Loop&#8230; it should go where your main content editable region used to be.</li>
</ul>
<p>Step 5 &#8211; Link Modification: I&#8217;m assuming that the central navigation &amp; footer nav (if it exists) for your existing website is going to stay so you need to update the links to make them all absolute URL&#8217;s&#8230; http://yoursite.com/page.html.</p>
<p>Step 6 &#8211; Add WP Template Tags: Open up the necessary files from the default WordPress Kubrick Theme.  Open up header, footer, index, sidebar and style.</p>
<ul>
<li>Header: Replace everything from the top of the file to the bottom of your closing head tag with the following into your index.html page&#8230;</li>
<li>If you have java script calls and extra head content that is unique to your Dreamweaver / WordPress Theme then pay close attention and merge what you need and be careful not to overwrite anyting important.</li>
<li>For visual purposes you may want to temporarily keep the original absolute call to the stylesheet.</li>
<li></li>
</ul>
<p><a href="http://cmswithwordpress.com/wp-content/uploads/2011/10/header_php.gif"><img class="aligncenter size-medium wp-image-302" title="Header.PHP File Code from a WordPress Theme" src="http://cmswithwordpress.com/wp-content/uploads/2011/10/header_php-300x84.gif" alt="Header.PHP File Code from a WordPress Theme" width="300" height="84" /></a></p>
<ul>
<li>Sidebar: Replace everything from the beginning to the end of the sidebar div tags with the following&#8230;</li>
</ul>
<table style="height: 2053px; width: 470px;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="border: 1px solid #333333;">
<pre>&lt;div id="sidebar"&gt;
&lt;ul&gt;

&lt;?php 	/* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?&gt;

&lt;li&gt;&lt;?php include (TEMPLATEPATH . '/searchform.php'); ?&gt;

&lt;/li&gt;&lt;li&gt;

&lt;?php /* If this is a 404 page */ if (is_404()) { ?&gt;

&lt;?php /* If this is a category archive */ } elseif (is_category()) { ?&gt;

&lt;p&gt;You are currently browsing the archives for the
&lt;?php single_cat_title(''); ?&gt; category.&lt;/p&gt;

&lt;?php /* If this is a yearly archive */ } elseif (is_day()) { ?&gt;

&lt;p&gt;You are currently browsing the
&lt;a href="&lt;?php bloginfo('home'); ?&gt;/"&gt;
&lt;?php echo bloginfo('name'); ?&gt;&lt;/a&gt; weblog archives

for the day &lt;?php the_time('l, F jS, Y'); ?&gt;.&lt;/p&gt;

&lt;?php /* If this is a monthly archive */ } elseif (is_month()) { ?&gt;

&lt;p&gt;You are currently browsing the
&lt;a href="&lt;?php bloginfo('home'); ?&gt;/"&gt;
&lt;?php echo bloginfo('name'); ?&gt;&lt;/a&gt; weblog archives

for &lt;?php the_time('F, Y'); ?&gt;.&lt;/p&gt;

&lt;?php /* If this is a yearly archive */ } elseif (is_year()) { ?&gt;

&lt;p&gt;You are currently browsing
the &lt;a href="&lt;?php bloginfo('home'); ?&gt;/"&gt;
&lt;?php echo bloginfo('name'); ?&gt;&lt;/a&gt; weblog archives

for the year &lt;?php the_time('Y'); ?&gt;.&lt;/p&gt;

&lt;?php /* If this is a monthly archive */ } elseif (is_search()) { ?&gt;

&lt;p&gt;You have searched the &lt;
a href="&lt;?php echo bloginfo('home'); ?&gt;/"&gt;
&lt;?php echo bloginfo('name'); ?&gt;&lt;/a&gt; weblog archives

for &lt;strong&gt;'&lt;?php the_search_query(); ?&gt;'&lt;/strong&gt;.
If you are unable to find anything in these search results,
you can try one of these links.&lt;/p&gt;

&lt;?php /* If this is a monthly archive */ } elseif
(isset($_GET['paged']) &amp;&amp; !empty($_GET['paged'])) { ?&gt;
&lt;p&gt;You are currently browsing the &lt;
a href="&lt;?php echo bloginfo('home'); ?&gt;/"&gt;
&lt;?php echo bloginfo('name'); ?&gt;&lt;/a&gt;
weblog archives.&lt;/p&gt;

&lt;?php } ?&gt;

&lt;/li&gt;

&lt;?php wp_list_pages('title_li=&lt;h2&gt;Pages&lt;/h2&gt;' ); ?&gt;

&lt;li&gt;&lt;h2&gt;Archives&lt;/h2&gt;

&lt;ul&gt;

&lt;?php wp_get_archives('type=monthly'); ?&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;?php wp_list_categories('show_count=1&amp;
title_li=&lt;h2&gt;Categories&lt;/h2&gt;'); ?&gt;

&lt;?php /* If this is the frontpage */
if ( is_home() || is_page() ) { ?&gt;

&lt;?php wp_list_bookmarks(); ?&gt;

&lt;li&gt;&lt;h2&gt;Meta&lt;/h2&gt;

&lt;ul&gt;

&lt;?php wp_register(); ?&gt;

&lt;li&gt;&lt;?php wp_loginout(); ?&gt;&lt;/li&gt;

&lt;li&gt;&lt;a href="http://validator.w3.org/check/referer" t
itle="This page validates as XHTML 1.0 Transitional"&gt;
Valid &lt;abbr title="eXtensible HyperText Markup
Language"&gt;XHTML&lt;/abbr&gt;&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;&lt;a href="http://gmpg.org/xfn/"&gt;&lt;abbr
title="XHTML Friends Network"&gt;XFN&lt;/abbr&gt;&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;&lt;a href="http://wordpress.org/" title="Powered by WordPress,
state-of-the-art semantic personal publishing
platform."&gt;WordPress&lt;/a&gt;&lt;/li&gt;

&lt;?php wp_meta(); ?&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;?php } ?&gt;
    &lt;?php endif; ?&gt;
&lt;/ul&gt;

&lt;/div&gt;</pre>
</td>
</tr>
</tbody>
</table>
<ul>
<li>Footer:  Insert the following code into your footer section&#8230;<br />
<table style="height: 471px;" border="0" cellspacing="0" cellpadding="0" width="470">
<tbody>
<tr>
<td style="border: 1px solid #333333;">
<pre>&lt;div id="footer"&gt;&lt;!-- If you'd like to
support WordPress, having the "powered by" link someone on your
blog is the best way, it's our
only promotion or advertising. --&gt;

&lt;p&gt;

&lt;?php bloginfo('name'); ?&gt; is proudly powered by

&lt;a href="http://wordpress.org/"&gt;WordPress&lt;/a&gt;

&lt;br /&gt;&lt;a href="&lt;?php bloginfo('rss2_url');
?&gt;"&gt;Entries (RSS)&lt;/a&gt;

and &lt;a href="&lt;?php bloginfo('comments_rss2_url'); ?&gt;
"&gt;Comments (RSS)&lt;/a&gt;.

&lt;!-- &lt;?php echo get_num_queries(); ?&gt; queries.
&lt;?php timer_stop(1); ?&gt; seconds. --&gt;

&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;&lt;?php wp_footer(); ?&gt;</pre>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
<ul>
<li>Index.php: Insert the loop<br />
<table style="height: 1038px;" border="0" cellspacing="0" cellpadding="5" width="470">
<tbody>
<tr>
<td style="border: 1px solid #333333;">
<pre>&lt;div id="content"&gt;

&lt;!-- here comes the loop --&gt;

&lt;?php if (have_posts()) : ?&gt;
&lt;?php while (have_posts()) :
the_post(); ?&gt;

&lt;div class="post" id="post-&lt;?php the_ID(); ?&gt;"&gt;

&lt;h2&gt;&lt;a href="&lt;?php the_permalink() ?&gt;"
rel="bookmark" title="Permanent Link to
&lt;?php the_title(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;

&lt;small&gt;&lt;?php the_time('F jS, Y') ?&gt;
&lt;!-- by &lt;?php the_author() ?&gt; --&gt;&lt;/small&gt;

&lt;div class="entry"&gt;

&lt;?php the_content('Read the rest of this entry »'); ?&gt;

&lt;/div&gt;

&lt;p class="postmetadata"&gt;Posted in &lt;?php the_category(', ') ?&gt; |
&lt;?php edit_post_link('Edit', '', ' | '); ?&gt;
&lt;?php comments_popup_link('No Comments »',
'1 Comment »', '% Comments »'); ?&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;?php endwhile; ?&gt;

&lt;div class="navigation"&gt;

&lt;div class="alignleft"&gt;&lt;?php next_posts_link
('« Previous Entries') ?&gt;&lt;/div&gt;

&lt;div class="alignright"&gt;&lt;?php previous_posts_link
('Next Entries »') ?&gt;&lt;/div&gt;

&lt;/div&gt;

&lt;?php else : ?&gt;

&lt;h2 class="center"&gt;Not Found&lt;/h2&gt;

&lt;p class="center"&gt;Sorry, but you are looking
for something that isn't here.&lt;/p&gt;

&lt;?php include (TEMPLATEPATH . "/searchform.php"); ?&gt;

&lt;?php endif; ?&gt;

&lt;!-- the loop is closed --&gt;

&lt;/div&gt;</pre>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
<p>Step 7 &#8211; Create Your Includes: Create 3 blank documents name them sidebar.php, footer.php, header.php and save them to your WordPress Theme folder</p>
<ul>
<li>From the top of index.html file,  cut all the code down to (but not including) the <strong>header comment tag</strong> and paste it into header.php  In place of the code we just cut&#8230; insert the WordPress Header Template tag.
<pre>&lt;?php get_header(); ?&gt;</pre>
</li>
<li>Do the same for your footer code and replace it with
<pre>&lt;?php get_footer(); ?&gt;</pre>
</li>
<li>Finally, do the same for the sidebar code and replace it with
<pre>&lt;?php get_sidebar(); ?&gt;</pre>
</li>
</ul>
<p>Step 8 &#8211; Rename Your Index.html file to Index.php.</p>
<p>Step 9 &#8211; Copy function.php, search.php, comments.php and comments_popup.php from the Kubrick Theme directory and paste them into your dreamweaver / wordpress theme directory.</p>
<p>Step 10 &#8211; Follow this same process to create your single.php and whatever other template files you need like archive.php, page.php, category.php etc. For the most part you can just rename your index.php file and adjust the bits of code to match what is in the respective Kubrick files.</p>
<p>Step 11-  Upload your theme directory to your test install, login into your admin panel &gt; presentations and your new theme should appear&#8230; click it and view your site. Go test out your new theme&#8230; if everything seems to be working then it&#8217;s time to cleanup the CSS file.</p>
<p>Step 12 &#8211; Widgetize the sidebar: If you followed the directions properly your sidebar should already be widgetized. If it&#8217;s not, make sure you copied over the function.php file and the widget code is intact in the sidebar file. If you have further issues check out</p>
<p>That&#8217;s It you should be done and now your dreamweaver template should be functioning as a working WordPress theme.</p>
<table border="0" cellspacing="0" cellpadding="5" width="400" align="center">
<tbody>
<tr>
<td align="center" valign="middle"><!--adsense#250box--></td>
<td align="center" valign="middle"></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://cmswithwordpress.com/dreamweaver-templates-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSS Drop Menus</title>
		<link>http://cmswithwordpress.com/css-drop-menus/</link>
		<comments>http://cmswithwordpress.com/css-drop-menus/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 20:29:10 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Special Tips & Tricks]]></category>

		<guid isPermaLink="false">http://cmswithwordpress.com/?p=250</guid>
		<description><![CDATA[If you are looking for an easy to use and understandable CSS Drop Menu tutorial you might want to keep reading. For the longest time I&#8217;ve always strayed customers away from using navigational drop menus for a couple of reasons; largely because they were not search engine friendly and very fickle if not programmed properly.  [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.htmldog.com/"><img class="alignright" style="margin: 5px;" title="HTML Dog" src="http://www.htmldog.com/r/logo.gif" alt="HTML Dog" width="140" height="91" /></a>If you are looking for an easy to use and understandable CSS Drop Menu tutorial you might want to keep reading. For the longest time I&#8217;ve always strayed customers away from using navigational drop menus for a couple of reasons; largely because they were not search engine friendly and very fickle if not programmed properly.  My biggest reason actually dealt with usability, I&#8217;ve always been a believer that you should never hide content from a web user.<span id="more-250"></span></p>
<p>But, when a customer really wants a particular feature, I&#8217;m always willing to make them happy. The implementation I found and like is mostly based on CSS with very little Java Scripting, and is cross browser compatible.  This technique has been around for a while but brand new to me&#8230;.  it&#8217;s called Son of Suckerfish. I tried it&#8217;s predecessor <a title="A list Apart - Suckerfish Drop Menus" href="http://www.alistapart.com/articles/dropdowns" target="_blank">Suckerfish Drop Menus</a> but found <a title="Son of Suckerfish CSS Drop Menus" href="http://htmldog.com/articles/suckerfish/dropdowns/" target="_blank">Son of Suckerfish</a> way cleaner and easier to use.  I did try a few others but the only tutorials I had any success with are the ones mentioned here.</p>
<p>Do you have a favorite search engine friendly CSS drop menu implementation? If so share it here.</p>
<p>Thanks for reading.</p>
]]></content:encoded>
			<wfw:commentRss>http://cmswithwordpress.com/css-drop-menus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google +1</title>
		<link>http://cmswithwordpress.com/google-plus-one/</link>
		<comments>http://cmswithwordpress.com/google-plus-one/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 21:43:28 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://cmswithwordpress.com/?p=237</guid>
		<description><![CDATA[Google +1 is a new product that was launched March 2011 in Beta to select users. Now it is out of Beta and you will find ads for it within Adsense and other places on the web. Google +1 is Google&#8217;s version of Facebook&#8217;s Like button. It allows the sharing of recommendations with online connections [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Google +1 is a new product that was launched March 2011 in Beta to select users. Now it is out of Beta and you will find ads for it within Adsense and other places on the web.</p>
<p>Google +1 is Google&#8217;s version of Facebook&#8217;s Like button. It allows the sharing of recommendations with online connections  and it&#8217;s all integrated into Google search results.  Check out the video:</p>
<p style="text-align: center;"><p><a href="http://cmswithwordpress.com/google-plus-one/"><em>Click here to view the embedded video.</em></a></p><span id="more-237"></span></p>
<p>Google Adsense prompted me to add a Plus 1 button to my websites. Set up is easy, only two small code snippets need to be pasted into the site template file(s). There is also a <a href="http://wordpress.org/extend/plugins/google-1/" target="_blank">WordPress Plugin for Google Plus 1</a>, but hopefully a newer version which, makes installation simpler, will be introduced.</p>
<p>Search Goolge Plus 1 and you will likely end up on the consumer end of things where you can join the experiment and start sharing your recommendations.</p>
<p>Is this going to be another Buzz kill? Tell us what you think?</p>
]]></content:encoded>
			<wfw:commentRss>http://cmswithwordpress.com/google-plus-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Organizing WP Pages with Page Parent Attribute</title>
		<link>http://cmswithwordpress.com/wordpress-page-parent-attribute/</link>
		<comments>http://cmswithwordpress.com/wordpress-page-parent-attribute/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 23:23:32 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Publishing Content]]></category>
		<category><![CDATA[Using the Visual Editor]]></category>

		<guid isPermaLink="false">http://cmswithwordpress.com/?p=225</guid>
		<description><![CDATA[Before you start building out your CMS site with WordPress you should give some thought to the pages you need to create and how those pages need to be organized. In step 12 of the Development Process we created two pages (Home and Blog). For the sake of this explanation let&#8217;s say we want to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Before you start building out your CMS site with WordPress you should give some thought to the pages you need to create and how those pages need to be organized.</p>
<p>In step 12 of the <a title="Wordpress CMS Development Process" href="/the-development-process/">Development Process</a> we created two pages (Home and Blog). For the sake of this explanation let&#8217;s say we want to also create 3 different service pages, an about, and a contact page.  Pretty straight forward, we go to Page &gt; Add Page and create away. But how do these pages need to be organized?<span id="more-225"></span></p>
<h3>Page Attributes</h3>
<p><img class="alignright size-medium wp-image-229" title=" Organizing WordPress Pages with Parent Attributes" src="http://cmswithwordpress.com/wp-content/uploads/2011/06/wp-page-300x188.gif" alt=" Organizing WordPress Pages with Parent Attributes" width="300" height="188" /></p>
<p>In the WP Page Editor screen, under the Publish Box on the right side there should be a Page Attributes box.  For most of the pages that we want to create we&#8217;d leave these toggles alone.</p>
<p>I would however use the Parent Attribute for the service pages. For our demo we are creating 3 service pages;  1 main services page and 2 sub pages.. 1 for each service.  We would make the main services page the parent to the sub pages.  To do this, first create the main service page and publish it.  Next, create the sub pages, but before you publish them,  toggle the Page Parent and select the main service page from the list.</p>
<p>Our website hierarchy would look something like this&#8230;</p>
<ul>
<li> Homepage</li>
<li>About Page</li>
<li>Main Service Pg
<ul>
<li>Sub Service Page</li>
<li>Sub Service Page</li>
</ul>
</li>
<li>Blog Page</li>
<li>Contact Page</li>
</ul>
<div>Benefits by doing so are;  Your site will be better organized. It also gives you more opportunities to squeeze in some keyword phrases into the page slugs.</div>
<h3>Better Organization</h3>
<p>Planning  and organizing all your pages ahead of time and how they will relate as parents and children will help keep things running smooth. Plan even farther by sculpting your page slugs and you&#8217;ll really be in good shape.  The more you create, change, move and delete stuff to get it right by doing things on the fly, the bigger a mess you are creating in the database.  Organizing in advance keeps the system and the database from having to work too hard.  Clogged up databases eventually lead to slower page load times, php memory errors and lost visitors.</p>
]]></content:encoded>
			<wfw:commentRss>http://cmswithwordpress.com/wordpress-page-parent-attribute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Difference Between Worpdress Pages and Posts</title>
		<link>http://cmswithwordpress.com/the-difference-between-worpdress-pages-and-posts/</link>
		<comments>http://cmswithwordpress.com/the-difference-between-worpdress-pages-and-posts/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 22:01:59 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[CMS Configurations]]></category>
		<category><![CDATA[Publishing Content]]></category>

		<guid isPermaLink="false">http://cmswithwordpress.com/?p=220</guid>
		<description><![CDATA[I get asked quite often what&#8217;s  is the difference between WordPress Pages and Worpress Posts. The main difference is pages are static and posts are dynamic. Another way I like to say this is, pages are stationary and posts have legs. What this really means is that pages are meant for long term content that should [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img class="alignright size-medium wp-image-241" title="WP Page or WP Post? That is the question at hand!" src="http://cmswithwordpress.com/wp-content/uploads/2011/10/think_before_you_blog-300x167.gif" alt="WP Page or WP Post? That is the question at hand!" width="300" height="167" />I get asked quite often what&#8217;s  is the difference between WordPress Pages and Worpress Posts.</p>
<p>The main difference is pages are static and posts are dynamic.  Another way I like to say this is, pages are stationary and posts have  legs. What this really means is that pages are meant for long term content  that should be regularly accessible where posts are mobile.</p>
<p>Yes a WP Page can still have some mobility with the use of social media  buttons but pages aren&#8217;t thrust out into the blog-o-sphere quite like a  post.</p>
<p><span id="more-220"></span></p>
<p>WordPress posts have legs, simply because they are pushed out to the internet so people can consume it. Posts get their mobility via Ping O  Matic and RSS Feeds which aid in pushing the content out to social platforms like Facebook, Twitter, Stumble Upon etc. This content gets consumed, interacted with and  hopefully shared with others.</p>
<p>Another way to look at WP Pages Vs  WP Posts is to regard pages as making up the nuts and bolts of your  website; your homepage, your about, contact and products or  services pages. WP blog posts are your PA system to send your content out onto the net with updates,  important dates, articles, product releases, business news, etc.</p>
<p>Hope this post helps clarify the difference between WordPress Pages and Posts and how they are used. If you have questions or need help with your WordPress CMS, contact us our day job.. <a title="Wordpress CMS Experts" href="http://www.Click-Refresh.com">Click Refresh</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://cmswithwordpress.com/the-difference-between-worpdress-pages-and-posts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Creating the wp-config.php file</title>
		<link>http://cmswithwordpress.com/creating-the-wp-config-php-file/</link>
		<comments>http://cmswithwordpress.com/creating-the-wp-config-php-file/#comments</comments>
		<pubDate>Mon, 25 Oct 2010 04:50:07 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Getting Started]]></category>

		<guid isPermaLink="false">http://cmswithwordpress.com/?p=205</guid>
		<description><![CDATA[One of the steps in the WordPress installation process is creating the wp-config file. Once you download the file package from WordPress.org you need to unzip the package and extract the files to your hard drive. The package will be contained inside a worpress folder. Directly inside that wordpress folder is a file named wp-config-sample.php, [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>One of the steps in the WordPress installation process is creating the wp-config file. Once you download the file package from WordPress.org you need to unzip the package and extract the files to your hard drive. The package will be contained inside a worpress folder. Directly inside that wordpress folder is a file named wp-config-sample.php, open that file in your favorite text editor. Yes you have to make some changes to the code but they are very easy to make.<br />
<span id="more-205"></span><br />
In a previous video tutorial, <a href="/creating-a-mysql-database-in-cpanel/">Creating A MySQL Database in cPanel</a>, we created the Database Name, Database User and Database Password. We need to add those credentials to the Sample Config file. Look at the screenshot below and you should be able to correlate the three items ( db name, db user, password ) that need to be input.. if not post a comment and I&#8217;ll try and walk you through it.</p>
<p><img class="size-full wp-image-206 alignleft" title="Creating a WP Config File " src="http://cmswithwordpress.com/wp-content/uploads/2010/10/db-credentials.gif" alt="Creating a WP Config File" width="475" height="269" /></p>
<p>The one tricky item in the wp-config file is the DB_Host line from the above screenshot. Different hosting companies have different protocols due to the way their servers are configured. If you are using a hosting platform that uses cPanel or Plesk the DB_Host will almost always be &#8216;localhost&#8217; like it is in the screenshot. If you are hosting at GoDaddy you will have to use a path that leads to your hosting account&#8230; localhost will not work. I believe you will have to get database location from the db panel inside the hosting control panel.</p>
<p>Finally there are the Authentication Unique Keys and Salts. Simply go to the <a href="https://api.wordpress.org/secret-key/1.1/salt/">WordPress Salts API Page</a>, copy the codes that were dynamically generated and paste them over the top of the place holder keys in the wp-config file. </p>
<p>That&#8217;s all you have to update, now click file > save as > and rename the file to wp-config.php. Make sure you save back in inside the WordPress folder you downloaded.</p>
]]></content:encoded>
			<wfw:commentRss>http://cmswithwordpress.com/creating-the-wp-config-php-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Find and Fix A Plugin Conflict</title>
		<link>http://cmswithwordpress.com/fixing-a-plugin-conflict/</link>
		<comments>http://cmswithwordpress.com/fixing-a-plugin-conflict/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 21:34:06 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Special Tips & Tricks]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://cmswithwordpress.com/?p=245</guid>
		<description><![CDATA[If you work with WordPress long enough you are bound to run into a fatal error from time to time.  These sometimes pop up when there is a plugin conflict. That means there is a plugin that doesn&#8217;t play nice another plugin.  I came across this very thing recently while when I was working with [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>If you work with WordPress long enough you are bound to run into a fatal error from time to time.  These sometimes pop up when there is a plugin conflict. That means there is a plugin that doesn&#8217;t play nice another plugin.  I came across this very thing recently while when I was working with my favorite shopping cart plugin one day, I installed, activated it and added a few products. When I went to preview things I was given a Fatal Error message.</p>
<p><span id="more-245"></span>To find the conflict you have to go through the process of elimination.  First, deactivate all plugins. In this case I reactivated my shopping cart plugin firsty and made sure it was working stand alone.  Now to find the plugin that wasn&#8217;t playing nice with the cart , I, one by one  reactivate each plugin and tested the site after each activation.  I did this until I got to WordPress Maintenance Mode where the error re-occurred&#8230; I just found my conflict.</p>
<p>I got lucky in this case with Cart66, the site I was working on only had 5 plugins running so it was rather easy to find the conflict. Typically, most of my WordPress sites have 15 or more plugins running.</p>
<p>Hope this just made somebodies day a little bit easier, good luck and happy blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://cmswithwordpress.com/fixing-a-plugin-conflict/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to the WordPress WYSIWYG Editor Part 1</title>
		<link>http://cmswithwordpress.com/introduction-to-the-wordpress-wysiwyg-editor-part-1/</link>
		<comments>http://cmswithwordpress.com/introduction-to-the-wordpress-wysiwyg-editor-part-1/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 23:25:34 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Using the Visual Editor]]></category>
		<category><![CDATA[Video Tutorials]]></category>
		<category><![CDATA[Wordpress Beginners Series]]></category>

		<guid isPermaLink="false">http://cmswithwordpress.com/?p=193</guid>
		<description><![CDATA[Part 1 in a series of 2 video tutorials..  an introduction to the WordPress WYSIWYG Content Editor Toolbar.  The tools are pretty much self explanatory but not all minds think and operate alike. This video introduction to the WordPress WYSIWYG content editor covers the first row of tools and introduces the kitchen sink button which [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Part 1 in a series of 2 video tutorials..  an introduction to the WordPress WYSIWYG Content Editor Toolbar.  The tools are pretty much self explanatory but not all minds think and operate alike. This video introduction to the WordPress WYSIWYG content editor covers the first row of tools and introduces the kitchen sink button which opens a second row to the editor / toolbar.</p>
<p>I hope this WordPress video tutorial isn&#8217;t too dry. If you have comments or questions, please post them below.</p>
<p><a href="http://cmswithwordpress.com/introduction-to-the-wordpress-wysiwyg-editor-part-1/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cmswithwordpress.com/introduction-to-the-wordpress-wysiwyg-editor-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uploading Media (PDF) To WordPress</title>
		<link>http://cmswithwordpress.com/uploading-media-pdf-to-wordpress/</link>
		<comments>http://cmswithwordpress.com/uploading-media-pdf-to-wordpress/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 15:02:51 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Using the Visual Editor]]></category>
		<category><![CDATA[Wordpress Beginners Series]]></category>

		<guid isPermaLink="false">http://cmswithwordpress.com/?p=187</guid>
		<description><![CDATA[Yet another media uploading tutorial for WordPress. Hope you enjoy&#8230; and please leave an comments or questions below. Thanks for visiting.]]></description>
			<content:encoded><![CDATA[<p></p><p>Yet another media uploading tutorial for WordPress. Hope you enjoy&#8230; and please leave an comments or questions below. Thanks for visiting.</p>
<p><a href="http://cmswithwordpress.com/uploading-media-pdf-to-wordpress/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cmswithwordpress.com/uploading-media-pdf-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uploading Images To WordPress</title>
		<link>http://cmswithwordpress.com/uploading-images-media-to-wordpress/</link>
		<comments>http://cmswithwordpress.com/uploading-images-media-to-wordpress/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 15:29:55 +0000</pubDate>
		<dc:creator>Sammy Russo</dc:creator>
				<category><![CDATA[Publishing Content]]></category>
		<category><![CDATA[Using the Visual Editor]]></category>
		<category><![CDATA[Video Tutorials]]></category>
		<category><![CDATA[Wordpress Beginners Series]]></category>

		<guid isPermaLink="false">http://cmswithwordpress.com/?p=181</guid>
		<description><![CDATA[Another tutorial from my WordPress Beginners Series&#8230; uploading images and other media to WordPress and adding them into your pages and posts.]]></description>
			<content:encoded><![CDATA[<p></p><p>Another tutorial from my WordPress Beginners Series&#8230; uploading images and other media to WordPress and adding them into your pages and posts.</p>
<p><a href="http://cmswithwordpress.com/uploading-images-media-to-wordpress/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cmswithwordpress.com/uploading-images-media-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

