Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

michelmfreitas

Erro no código para exibir páginas no WP

Recommended Posts

Olá pessoal, estou com alguns probleminhas no WP. Customizei meu tema e algumas opções. Porém, quando clico em alguma página, ele não me mostra o seu conteúdo. =/

 

Alguém sabe me dizer onde está meu erro aí??

 

Segue meu código da index.php

 

<?php if ( have_posts() ) : ?>

			<?php twentyeleven_content_nav( 'nav-above' ); ?>

			<?php

			add_theme_support( 'post-thumbnails' );
			if ( is_home() ) {
				query_posts(array ( 'category_name' => 'Destaques', 'posts_per_page' => 3 ) );
				while ( have_posts() ) : the_post();
					echo "<div class='destaques'>";
						echo "<h2>"; the_title(); echo "</h2>";
						the_post_thumbnail();
						the_excerpt();
					echo "</div>";
				endwhile;
				wp_reset_query();
			}

			?>				

			<?php
			if ( is_home() ) {
				query_posts(array ( 'cat' => 6, 'posts_per_page' => 3 ) );
				while ( have_posts() ) : the_post();
					echo "<div class='destaques'>";
						echo "<h2>"; the_title(); echo "</h2>";
						the_post_thumbnail();
					echo "</div>";
				endwhile;
				wp_reset_query();
			}

			?>
			<? echo "<br style='clear:both;' />"; ?>

			<?php twentyeleven_content_nav( 'nav-below' ); ?>

		<?php else : ?>
			<article id="post-0" class="post no-results not-found">
				<header class="entry-header">
					<h1 class="entry-title"><?php _e( 'Nothing Found', 'twentyeleven' ); ?></h1>
				</header><!-- .entry-header -->

				<div class="entry-content">
					<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyeleven' ); ?></p>
					<?php get_search_form(); ?>
				</div><!-- .entry-content -->
			</article><!-- #post-0 -->

		<?php endif; ?>

Compartilhar este post


Link para o post
Compartilhar em outros sites

Para criar paginas use a page.php e jogue o seguinte código para teste:

 

<?php
while ( have_posts() ) : the_post();
the_title();
echo "<br />";
the_content();
endwhile;
?>

 

Lembre-se de criar as páginas dentro do WP também!

 

Verifique as urls amigáveis para ver se está chamando no HTML da mesma forma que as urls amigáveis estão sendo configuradas no WP.

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.