Como exibir o conteúdo da página em um modelo de página?
-
-
Qual é oproblema?Este é ummodelo depágina,portanto,vocêtem acesso ao conteúdo dapágina.Pormeio de outra consulta separada,você obtém acesso a umpostespecífico,porexemplo,e,portanto,podegerar seu conteúdo.Então?What is the problem? This is a page template, so you have access to the page content. By means of another separate query you gain access to a specific post, for instance, and thus can output its content. So?
- 2
- 2013-03-11
- tfrommen
-
Porfavor,sejapaciente antes de votarparabaixo.Euestou lutandoporissoe entãoencontrei a solução.Eutentei Q & A aquipara compartilhar a lógica com os outros - acho que vaiesclarecer ofato de umamaneira queestouprocurandoporisso.Espero que o Q & Aesteja claropara você.Please be patient before voting down. I's struggling for it and then I found the solution. I tried to Q&A here to share the logic with others - I think it will clarify the fact in a way I's looking for it. Hope the Q & A is clear to you.
- 0
- 2013-03-11
- Mayeenul Islam
-
Emprimeiro lugar,eufiz **não ** DownVote suapergunta.Em segundo lugar,obrigadopor compartilhar seu conhecimento conosco.Vocêestá absolutamente certoparafazê-lo.Eu acho que oproblema é/foi queeste _question_nãoeratão difícil de resolverpara usuários/desenvolvedoresexperientes da WP,bem como ofato de vocêpostar apenas apergunta.Se você quiser questionare responder desde oinício,bastaincluir sua resposta/solução diretamentenamesmapágina que vocêescreve suapergunta.Abaixo dobotão _post seu question_,há uma caixa de seleção ** Responda suaprópriapergunta **.Obrigadonovamente.Firstly, I did **not** downvote your question. Secondly, thanks for sharing your knowledge with us. You're absolutely right to do so. I guess, the problem is/was that this _question_ was not that hard to solve for experienced WP users/developers, as well as the fact that you posted the question alone. If you want to question & answer right from the start, just include your answer/solution directly on the same page that you write your question on. Below the _Post Your Question_ button there is a check box **Answer your own question**. Thanks again.
- 0
- 2013-03-11
- tfrommen
-
`WP_RESET_POSTDATA ()`para o resgate.Deve serfeito após cada consultapersonalizada.`wp_reset_postdata()` for the rescue. Should be done _after each custom query_.
- 0
- 2013-03-11
- kaiser
-
2 respostas
- votos
-
- 2013-03-11
Estou usando dois loops. Oprimeiro loop émostrar o conteúdo dapágina,e o segundo loop émostrar o conteúdopostal consultado. Eu comenteinos códigos quandonecessário. Euenfatizeinas loops,como deckster0 disse no suporte WordPress que,
the_content()
funciona apenas dentro de um loop WordPress. Euestou colocandoesse códigoem ummeuprópriomodelo:<?php /* * Template Name: My Template */ get_header(); ?> <div id="container"> <div id="content" class="pageContent"> <h1 class="entry-title"><?php the_title(); ?></h1> <!-- Page Title --> <?php // TO SHOW THE PAGE CONTENTS while ( have_posts() ) : the_post(); ?> <!--Because the_content() works only inside a WP Loop --> <div class="entry-content-page"> <?php the_content(); ?> <!-- Page Content --> </div><!-- .entry-content-page --> <?php endwhile; //resetting the page loop wp_reset_query(); //resetting the page query ?> <?php // TO SHOW THE POST CONTENTS ?> <?php $my_query = new WP_Query( 'cat=1' ); // I used a category id 1 as an example ?> <?php if ( $my_query->have_posts() ) : ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <h1 class="entry-title"><?php the_title(); ?></h1> <!-- Queried Post Title --> <div class="entry-content"> <?php the_excerpt(); ?> <!-- Queried Post Excerpts --> </div><!-- .entry-content --> <?php endwhile; //resetting the post loop ?> </div><!-- #post-<?php the_ID(); ?> --> <?php wp_reset_postdata(); //resetting the post query endif; ?> </div><!-- #content --> </div><!-- #container -->
I'm using two loops. First loop is to show the page content, and the second loop is to show the queried post contents. I commented into the codes where necessary. I emphasized into the loops, as Deckster0 said in WordPress support that,
the_content()
works only inside a WordPress Loop. I'm placing these code into a my own template:<?php /* * Template Name: My Template */ get_header(); ?> <div id="container"> <div id="content" class="pageContent"> <h1 class="entry-title"><?php the_title(); ?></h1> <!-- Page Title --> <?php // TO SHOW THE PAGE CONTENTS while ( have_posts() ) : the_post(); ?> <!--Because the_content() works only inside a WP Loop --> <div class="entry-content-page"> <?php the_content(); ?> <!-- Page Content --> </div><!-- .entry-content-page --> <?php endwhile; //resetting the page loop wp_reset_query(); //resetting the page query ?> <?php // TO SHOW THE POST CONTENTS ?> <?php $my_query = new WP_Query( 'cat=1' ); // I used a category id 1 as an example ?> <?php if ( $my_query->have_posts() ) : ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <h1 class="entry-title"><?php the_title(); ?></h1> <!-- Queried Post Title --> <div class="entry-content"> <?php the_excerpt(); ?> <!-- Queried Post Excerpts --> </div><!-- .entry-content --> <?php endwhile; //resetting the post loop ?> </div><!-- #post-<?php the_ID(); ?> --> <?php wp_reset_postdata(); //resetting the post query endif; ?> </div><!-- #content --> </div><!-- #container -->
-
Essa segunda consultanão deveestar dentro de "se (ter_posts ())"porqueessa afirmação será sempre verdadeira.Você deve chamar `se ($my_Query->them_posts ())` após o `$my_query=new wp_query ('cat=1');`e linhas de args se você quiser verificar se a consultatem resultados.That second query shouldn't be inside `if( have_posts() )` because that statement will always be true. You should call `if( $my_query->have_posts() )` after the `$my_query = new WP_Query( 'cat=1' );` and args lines if you want to check that query has results.
- 0
- 2013-04-12
- t31os
-
@ T31os vocêestá certo.Éminha culpa.Agora corrigiu o códigoparatal.Obrigadopelaidentificação.:)@t31os you are right. It's my fault. Now corrected the code to such. Thanks for the identification. :)
- 0
- 2014-05-28
- Mayeenul Islam
-
- 2013-03-11
Dois loops é comumparafazerisso,mas umpouco superdosed.
Cadapostagem oupáginafornece a super variável
$post
.Já seperguntoupor que seuget_post_meta()
funciona com um simples$post->ID
;)?Então,antes deiniciar o WP_Query () que recebe seusposts listados,vocêpode acessar os dados atuais depágina/pós-postagem com
$post->ID
,$post->post_content
,$post->guid
e assimpor diante.No loop,esta variável épreenchidapelapostagemem loop.Para salvá-loparamaistarde,vocêpodefazer umanova variável
$temp_post = $post // new WP_Query() + loop here
ou ligue
.
wp_reset_query ()
Após a listagem.A últimafunção deve ser chamada de qualquermaneiraparagarantir que os dadosnabarra lateral seja a direitapara apágina/postagem atual.
Two loops is common to do this, but a bit overdosed.
Every post or page gives you the super-variable
$post
. Ever wondered why yourget_post_meta()
works with a simple$post->ID
;) ?So, before you start the WP_Query() that gets your listed posts, you can access the current page-/post-data with
$post->ID
,$post->post_content
,$post->guid
and so on.In the loop, this variable gets filled by the looped post. To save it for later, you can either make a new variable
$temp_post = $post // new WP_Query() + loop here
or call
wp_reset_query()
after the listing. The last function should be called anyway to ensure that the data in your sidebar is the right for the current page/post.
Nomeu site do WordPress,fiz ummodelo depáginapersonalizado,que continha uma consultapersonalizada [usando
WP_Query()
].Comessa consulta,possoperfeitamente obter osposts de uma determinada categoria.Maseu queromostrar o conteúdo dapáginajunto com osposts consultados.coisa será como:
---------------------------
título dapágina
Conteúdo dapágina
Cabeçalho de Post de Queried
Considered Post Conteúdo
---------------------------