<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Criar páginas no WordPress</title>
	<atom:link href="http://tableless.com.br/criar-paginas-no-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://tableless.com.br/criar-paginas-no-wordpress/</link>
	<description>Boas práticas de Desenvolvimento com Padrões Web</description>
	<lastBuildDate>Fri, 10 Feb 2012 15:39:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Michel Souza</title>
		<link>http://tableless.com.br/criar-paginas-no-wordpress/comment-page-1/#comment-138597</link>
		<dc:creator>Michel Souza</dc:creator>
		<pubDate>Wed, 30 Nov 2011 20:13:38 +0000</pubDate>
		<guid isPermaLink="false">http://tableless.com.br/?p=1007#comment-138597</guid>
		<description>Pedro, excelente dica, mas acho que deveria apenas mudar o titulo, logo que entrei pensei que trataria da criação de paginas personalizadas, como as obtidas com o comentário a baixo.



O que esta sendo tratado é sobre os menos. Desculpa se parecer inconveniente brother, é só uma observação.

Obs: coloquei espaços no código pois não lê.

Abraço</description>
		<content:encoded><![CDATA[<p>Pedro, excelente dica, mas acho que deveria apenas mudar o titulo, logo que entrei pensei que trataria da criação de paginas personalizadas, como as obtidas com o comentário a baixo.</p>
<p>O que esta sendo tratado é sobre os menos. Desculpa se parecer inconveniente brother, é só uma observação.</p>
<p>Obs: coloquei espaços no código pois não lê.</p>
<p>Abraço</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michel Souza</title>
		<link>http://tableless.com.br/criar-paginas-no-wordpress/comment-page-1/#comment-138596</link>
		<dc:creator>Michel Souza</dc:creator>
		<pubDate>Wed, 30 Nov 2011 20:11:29 +0000</pubDate>
		<guid isPermaLink="false">http://tableless.com.br/?p=1007#comment-138596</guid>
		<description>Pedro, excelente dica, mas acho que deveria apenas mudar o titulo, logo que entrei pensei que trataria da criação de paginas personalizadas, como as obtidas com o comentário a baixo.



O que esta sendo tratado é sobre os menos. Desculpa se parecer inconveniente brother, é só uma observação.

Abraço</description>
		<content:encoded><![CDATA[<p>Pedro, excelente dica, mas acho que deveria apenas mudar o titulo, logo que entrei pensei que trataria da criação de paginas personalizadas, como as obtidas com o comentário a baixo.</p>
<p>O que esta sendo tratado é sobre os menos. Desculpa se parecer inconveniente brother, é só uma observação.</p>
<p>Abraço</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marcio</title>
		<link>http://tableless.com.br/criar-paginas-no-wordpress/comment-page-1/#comment-138005</link>
		<dc:creator>marcio</dc:creator>
		<pubDate>Sun, 17 Jul 2011 20:32:05 +0000</pubDate>
		<guid isPermaLink="false">http://tableless.com.br/?p=1007#comment-138005</guid>
		<description>Pedro Rogério estou começando a usar o WordPress vi sua esplicação mas no meu header.php do WordPress não tem como vc disse,meu header.php abaixo se vc puder me ajudar te agradeço
&lt;code&gt;&lt;?php
/**
 * The Header for our theme.
 *
 * Displays all of the &lt;head&gt; section and everything up till &lt;div id=&quot;main&quot;&gt;
 *
 * @package WordPress
 * @subpackage Twenty_Ten
 * @since Twenty Ten 1.0
 */
?&gt;&lt;!DOCTYPE html&gt;
&lt;html &lt;?php language_attributes(); ?&gt;&gt;
&lt;head&gt;
&lt;meta charset=&quot;&lt;?php bloginfo( &#039;charset&#039; ); ?&gt;&quot; /&gt;
&lt;title&gt;&lt;?php
	/*
	 * Print the &lt;title&gt; tag based on what is being viewed.
	 */
	global $page, $paged;

	wp_title( &#039;&#124;&#039;, true, &#039;right&#039; );

	// Add the blog name.
	bloginfo( &#039;name&#039; );

	// Add the blog description for the home/front page.
	$site_description = get_bloginfo( &#039;description&#039;, &#039;display&#039; );
	if ( $site_description &amp;&amp; ( is_home() &#124;&#124; is_front_page() ) )
		echo &quot; &#124; $site_description&quot;;

	// Add a page number if necessary:
	if ( $paged &gt;= 2 &#124;&#124; $page &gt;= 2 )
		echo &#039; &#124; &#039; . sprintf( __( &#039;Page %s&#039;, &#039;twentyten&#039; ), max( $paged, $page ) );

	?&gt;&lt;/title&gt;
&lt;link rel=&quot;profile&quot; href=&quot;http://gmpg.org/xfn/11&quot; /&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; media=&quot;all&quot; href=&quot;&lt;?php bloginfo( &#039;stylesheet_url&#039; ); ?&gt;&quot; /&gt;
&lt;link rel=&quot;pingback&quot; href=&quot;&lt;?php bloginfo( &#039;pingback_url&#039; ); ?&gt;&quot; /&gt;
&lt;?php
	/* We add some JavaScript to pages with the comment form
	 * to support sites with threaded comments (when in use).
	 */
	if ( is_singular() &amp;&amp; get_option( &#039;thread_comments&#039; ) )
		wp_enqueue_script( &#039;comment-reply&#039; );

	/* Always have wp_head() just before the closing &lt;/head&gt;
	 * tag of your theme, or you will break many plugins, which
	 * generally use this hook to add elements to &lt;head&gt; such
	 * as styles, scripts, and meta tags.
	 */
	wp_head();
?&gt;
&lt;/head&gt;

&lt;body &lt;?php body_class(); ?&gt;&gt;
&lt;div id=&quot;wrapper&quot; class=&quot;hfeed&quot;&gt;
	&lt;div id=&quot;header&quot;&gt;
		&lt;div id=&quot;masthead&quot;&gt;
			&lt;div id=&quot;branding&quot; role=&quot;banner&quot;&gt;
				&lt;?php $heading_tag = ( is_home() &#124;&#124; is_front_page() ) ? &#039;h1&#039; : &#039;div&#039;; ?&gt;
				&lt;&lt;?php echo $heading_tag; ?&gt; id=&quot;site-title&quot;&gt;
					&lt;span&gt;
						&lt;a href=&quot;&lt;?php echo home_url( &#039;/&#039; ); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr( get_bloginfo( &#039;name&#039;, &#039;display&#039; ) ); ?&gt;&quot; rel=&quot;home&quot;&gt;&lt;?php bloginfo( &#039;name&#039; ); ?&gt;&lt;/a&gt;
					&lt;/span&gt;
				&lt;/&lt;?php echo $heading_tag; ?&gt;&gt;
				&lt;div id=&quot;site-description&quot;&gt;&lt;?php bloginfo( &#039;description&#039; ); ?&gt;&lt;/div&gt;

				&lt;?php
					// Check if this is a post or page, if it has a thumbnail, and if it&#039;s a big one
					if ( is_singular() &amp;&amp; current_theme_supports( &#039;post-thumbnails&#039; ) &amp;&amp;
							has_post_thumbnail( $post-&gt;ID ) &amp;&amp;
							( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post-&gt;ID ), &#039;post-thumbnail&#039; ) ) &amp;&amp;
							$image[1] &gt;= HEADER_IMAGE_WIDTH ) :
						// Houston, we have a new header image!
						echo get_the_post_thumbnail( $post-&gt;ID );
					elseif ( get_header_image() ) : ?&gt;
						&lt;img src=&quot;&lt;?php header_image(); ?&gt;&quot; width=&quot;&lt;?php echo HEADER_IMAGE_WIDTH; ?&gt;&quot; height=&quot;&lt;?php echo HEADER_IMAGE_HEIGHT; ?&gt;&quot; alt=&quot;&quot; /&gt;
					&lt;?php endif; ?&gt;
			&lt;/div&gt;&lt;!-- #branding --&gt;

			&lt;div id=&quot;access&quot; role=&quot;navigation&quot;&gt;
			  &lt;?php /*  Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?&gt;
				&lt;div class=&quot;skip-link screen-reader-text&quot;&gt;&lt;a href=&quot;#content&quot; title=&quot;&lt;?php esc_attr_e( &#039;Skip to content&#039;, &#039;twentyten&#039; ); ?&gt;&quot;&gt;&lt;?php _e( &#039;Skip to content&#039;, &#039;twentyten&#039; ); ?&gt;&lt;/a&gt;&lt;/div&gt;
				&lt;?php /* Our navigation menu.  If one isn&#039;t filled out, wp_nav_menu falls back to wp_page_menu.  The menu assiged to the primary position is the one used.  If none is assigned, the menu with the lowest ID is used.  */ ?&gt;
				&lt;?php wp_nav_menu( array( &#039;container_class&#039; =&gt; &#039;menu-header&#039;, &#039;theme_location&#039; =&gt; &#039;primary&#039; ) ); ?&gt;
			&lt;/div&gt;&lt;!-- #access --&gt;
		&lt;/div&gt;&lt;!-- #masthead --&gt;
	&lt;/div&gt;&lt;!-- #header --&gt;

	&lt;div id=&quot;main&quot;&gt;
&lt;/code&gt;
Obrigado pela sua atenção</description>
		<content:encoded><![CDATA[<p>Pedro Rogério estou começando a usar o WordPress vi sua esplicação mas no meu header.php do WordPress não tem como vc disse,meu header.php abaixo se vc puder me ajudar te agradeço</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:400px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br />40<br />41<br />42<br />43<br />44<br />45<br />46<br />47<br />48<br />49<br />50<br />51<br />52<br />53<br />54<br />55<br />56<br />57<br />58<br />59<br />60<br />61<br />62<br />63<br />64<br />65<br />66<br />67<br />68<br />69<br />70<br />71<br />72<br />73<br />74<br />75<br />76<br />77<br />78<br />79<br />80<br />81<br />82<br />83<br />84<br />85<br />86<br />87<br />88<br />89<br />90<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;?php<br />
/**<br />
&nbsp;* The Header for our theme.<br />
&nbsp;*<br />
&nbsp;* Displays all of the &lt;head&gt; section and everything up till &lt;div id=&quot;main&quot;&gt;<br />
&nbsp;*<br />
&nbsp;* @package WordPress<br />
&nbsp;* @subpackage Twenty_Ten<br />
&nbsp;* @since Twenty Ten 1.0<br />
&nbsp;*/<br />
?&gt;&lt;!DOCTYPE html&gt;<br />
&lt;html &lt;?php language_attributes(); ?&gt;&gt;<br />
&lt;head&gt;<br />
&lt;meta charset=&quot;&lt;?php bloginfo( 'charset' ); ?&gt;&quot; /&gt;<br />
&lt;title&gt;&lt;?php<br />
&nbsp; &nbsp; /*<br />
&nbsp; &nbsp; &nbsp;* Print the &lt;title&gt; tag based on what is being viewed.<br />
&nbsp; &nbsp; &nbsp;*/<br />
&nbsp; &nbsp; global $page, $paged;<br />
<br />
&nbsp; &nbsp; wp_title( '|', true, 'right' );<br />
<br />
&nbsp; &nbsp; // Add the blog name.<br />
&nbsp; &nbsp; bloginfo( 'name' );<br />
<br />
&nbsp; &nbsp; // Add the blog description for the home/front page.<br />
&nbsp; &nbsp; $site_description = get_bloginfo( 'description', 'display' );<br />
&nbsp; &nbsp; if ( $site_description &amp;&amp; ( is_home() || is_front_page() ) )<br />
&nbsp; &nbsp; &nbsp; &nbsp; echo &quot; | $site_description&quot;;<br />
<br />
&nbsp; &nbsp; // Add a page number if necessary:<br />
&nbsp; &nbsp; if ( $paged &gt;= 2 || $page &gt;= 2 )<br />
&nbsp; &nbsp; &nbsp; &nbsp; echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );<br />
<br />
&nbsp; &nbsp; ?&gt;&lt;/title&gt;<br />
&lt;link rel=&quot;profile&quot; href=&quot;http://gmpg.org/xfn/11&quot; /&gt;<br />
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; media=&quot;all&quot; href=&quot;&lt;?php bloginfo( 'stylesheet_url' ); ?&gt;&quot; /&gt;<br />
&lt;link rel=&quot;pingback&quot; href=&quot;&lt;?php bloginfo( 'pingback_url' ); ?&gt;&quot; /&gt;<br />
&lt;?php<br />
&nbsp; &nbsp; /* We add some JavaScript to pages with the comment form<br />
&nbsp; &nbsp; &nbsp;* to support sites with threaded comments (when in use).<br />
&nbsp; &nbsp; &nbsp;*/<br />
&nbsp; &nbsp; if ( is_singular() &amp;&amp; get_option( 'thread_comments' ) )<br />
&nbsp; &nbsp; &nbsp; &nbsp; wp_enqueue_script( 'comment-reply' );<br />
<br />
&nbsp; &nbsp; /* Always have wp_head() just before the closing &lt;/head&gt;<br />
&nbsp; &nbsp; &nbsp;* tag of your theme, or you will break many plugins, which<br />
&nbsp; &nbsp; &nbsp;* generally use this hook to add elements to &lt;head&gt; such<br />
&nbsp; &nbsp; &nbsp;* as styles, scripts, and meta tags.<br />
&nbsp; &nbsp; &nbsp;*/<br />
&nbsp; &nbsp; wp_head();<br />
?&gt;<br />
&lt;/head&gt;<br />
<br />
&lt;body &lt;?php body_class(); ?&gt;&gt;<br />
&lt;div id=&quot;wrapper&quot; class=&quot;hfeed&quot;&gt;<br />
&nbsp; &nbsp; &lt;div id=&quot;header&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;masthead&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;branding&quot; role=&quot;banner&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;&lt;?php echo $heading_tag; ?&gt; id=&quot;site-title&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;span&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;a href=&quot;&lt;?php echo home_url( '/' ); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?&gt;&quot; rel=&quot;home&quot;&gt;&lt;?php bloginfo( 'name' ); ?&gt;&lt;/a&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/span&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/&lt;?php echo $heading_tag; ?&gt;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;site-description&quot;&gt;&lt;?php bloginfo( 'description' ); ?&gt;&lt;/div&gt;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;?php<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Check if this is a post or page, if it has a thumbnail, and if it's a big one<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ( is_singular() &amp;&amp; current_theme_supports( 'post-thumbnails' ) &amp;&amp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; has_post_thumbnail( $post-&gt;ID ) &amp;&amp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post-&gt;ID ), 'post-thumbnail' ) ) &amp;&amp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $image[1] &gt;= HEADER_IMAGE_WIDTH ) :<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Houston, we have a new header image!<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo get_the_post_thumbnail( $post-&gt;ID );<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; elseif ( get_header_image() ) : ?&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;img src=&quot;&lt;?php header_image(); ?&gt;&quot; width=&quot;&lt;?php echo HEADER_IMAGE_WIDTH; ?&gt;&quot; height=&quot;&lt;?php echo HEADER_IMAGE_HEIGHT; ?&gt;&quot; alt=&quot;&quot; /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;?php endif; ?&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;&lt;!-- #branding --&gt;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;access&quot; role=&quot;navigation&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;?php /* &nbsp;Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div class=&quot;skip-link screen-reader-text&quot;&gt;&lt;a href=&quot;#content&quot; title=&quot;&lt;?php esc_attr_e( 'Skip to content', 'twentyten' ); ?&gt;&quot;&gt;&lt;?php _e( 'Skip to content', 'twentyten' ); ?&gt;&lt;/a&gt;&lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;?php /* Our navigation menu. &nbsp;If one isn't filled out, wp_nav_menu falls back to wp_page_menu. &nbsp;The menu assiged to the primary position is the one used. &nbsp;If none is assigned, the menu with the lowest ID is used. &nbsp;*/ ?&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;?php wp_nav_menu( array( 'container_class' =&gt; 'menu-header', 'theme_location' =&gt; 'primary' ) ); ?&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;&lt;!-- #access --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;&lt;!-- #masthead --&gt;<br />
&nbsp; &nbsp; &lt;/div&gt;&lt;!-- #header --&gt;<br />
<br />
&nbsp; &nbsp; &lt;div id=&quot;main&quot;&gt;</div></td></tr></tbody></table></div>
<p>Obrigado pela sua atenção</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Everaldo</title>
		<link>http://tableless.com.br/criar-paginas-no-wordpress/comment-page-1/#comment-137759</link>
		<dc:creator>Everaldo</dc:creator>
		<pubDate>Mon, 09 May 2011 00:51:34 +0000</pubDate>
		<guid isPermaLink="false">http://tableless.com.br/?p=1007#comment-137759</guid>
		<description>Cara, tem como listar as últimas 5 páginas atualizadas com o WP_LIST_PAGES?</description>
		<content:encoded><![CDATA[<p>Cara, tem como listar as últimas 5 páginas atualizadas com o WP_LIST_PAGES?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diego Eis</title>
		<link>http://tableless.com.br/criar-paginas-no-wordpress/comment-page-1/#comment-136385</link>
		<dc:creator>Diego Eis</dc:creator>
		<pubDate>Sun, 12 Dec 2010 20:52:33 +0000</pubDate>
		<guid isPermaLink="false">http://tableless.com.br/?p=1007#comment-136385</guid>
		<description>Antonio, como vai?
A versão utilizada no artigo é de 2008. Hoje ele já mudou muito! ;-)</description>
		<content:encoded><![CDATA[<p>Antonio, como vai?<br />
A versão utilizada no artigo é de 2008. Hoje ele já mudou muito! <img src='http://tableless.com.br/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antonio Caser</title>
		<link>http://tableless.com.br/criar-paginas-no-wordpress/comment-page-1/#comment-136376</link>
		<dc:creator>Antonio Caser</dc:creator>
		<pubDate>Fri, 10 Dec 2010 17:28:44 +0000</pubDate>
		<guid isPermaLink="false">http://tableless.com.br/?p=1007#comment-136376</guid>
		<description>Que versão é essa do WordPress que voce utiliza? 

Meu WordPress 3.0.2 não tem esse &quot;Gerenciar&quot;. 

Pode me explicar melhor?

Obrigado.</description>
		<content:encoded><![CDATA[<p>Que versão é essa do WordPress que voce utiliza? </p>
<p>Meu WordPress 3.0.2 não tem esse &#8220;Gerenciar&#8221;. </p>
<p>Pode me explicar melhor?</p>
<p>Obrigado.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Itarcio</title>
		<link>http://tableless.com.br/criar-paginas-no-wordpress/comment-page-1/#comment-136309</link>
		<dc:creator>Itarcio</dc:creator>
		<pubDate>Wed, 08 Dec 2010 17:07:15 +0000</pubDate>
		<guid isPermaLink="false">http://tableless.com.br/?p=1007#comment-136309</guid>
		<description>Pedro Rogério, tu é o cara!</description>
		<content:encoded><![CDATA[<p>Pedro Rogério, tu é o cara!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wladimir Cebolinha</title>
		<link>http://tableless.com.br/criar-paginas-no-wordpress/comment-page-1/#comment-136089</link>
		<dc:creator>Wladimir Cebolinha</dc:creator>
		<pubDate>Tue, 26 Oct 2010 23:41:17 +0000</pubDate>
		<guid isPermaLink="false">http://tableless.com.br/?p=1007#comment-136089</guid>
		<description>Legal, é a primeira vez que entro aqui mais vou entrar sempre para poder aprender a mexer no wordpress pois acho esse sistema de blog maravilhoso.

Um abraço</description>
		<content:encoded><![CDATA[<p>Legal, é a primeira vez que entro aqui mais vou entrar sempre para poder aprender a mexer no wordpress pois acho esse sistema de blog maravilhoso.</p>
<p>Um abraço</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edson</title>
		<link>http://tableless.com.br/criar-paginas-no-wordpress/comment-page-1/#comment-136023</link>
		<dc:creator>Edson</dc:creator>
		<pubDate>Fri, 15 Oct 2010 16:21:05 +0000</pubDate>
		<guid isPermaLink="false">http://tableless.com.br/?p=1007#comment-136023</guid>
		<description>muito bom gostei parabens!!!
esse foi o melhor tutorial que eu ja ví.</description>
		<content:encoded><![CDATA[<p>muito bom gostei parabens!!!<br />
esse foi o melhor tutorial que eu ja ví.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: o brasileirinho</title>
		<link>http://tableless.com.br/criar-paginas-no-wordpress/comment-page-1/#comment-134900</link>
		<dc:creator>o brasileirinho</dc:creator>
		<pubDate>Thu, 29 Oct 2009 19:55:47 +0000</pubDate>
		<guid isPermaLink="false">http://tableless.com.br/?p=1007#comment-134900</guid>
		<description>Excelente explicação, mas queria saber também como aglomerar as páginas em uma determinada categoria. No caso dos post já faço, mas as páginas preciso saber. Poderia explicar?</description>
		<content:encoded><![CDATA[<p>Excelente explicação, mas queria saber também como aglomerar as páginas em uma determinada categoria. No caso dos post já faço, mas as páginas preciso saber. Poderia explicar?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

