Come visualizzare il contenuto della pagina in un modello di pagina?
-
-
Qual èilproblema?Questo è unmodello dipagina,quindi hai accesso al contenuto dellapagina.Permezzo di un'altra query separata,adesempio,hai accesso a unpost specificoe quindipuoiprodurreil suo contenuto.Così?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
-
Perfavore siipazienteprima di votare.Sto lottandoper questoe poi hotrovato la soluzione.Hoprovato afare domandee risposte quiper condividere la logica congli altri -penso che chiariràilfattonelmodoin cui lo cerco.Spero che le domandee risposteti siano chiare.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
-
Inprimo luogo,**non ** honegato latua domanda.In secondo luogo,grazieper aver condiviso letue conoscenze connoi.Hai assolutamente ragione afarlo.Immagino cheilproblema sia/era che questa _question_nonera così difficile da risolvereper utenti/sviluppatori WPesperti,così comeilfatto che haipubblicato la domanda da solo.Se vuoiporre domandee risponderefin dall'inizio,includi semplicemente latua risposta/soluzione direttamente sulla stessapaginain cui scrivi latua domanda.Sottoilpulsante _Pubblica latua domanda_ èpresente una casella di controllo ** Rispondi allatua domanda **.Grazie ancora.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 ()`peril salvataggio.Dovrebbeesserefatto dopo ogni querypersonalizzata.`wp_reset_postdata()` for the rescue. Should be done _after each custom query_.
- 0
- 2013-03-11
- kaiser
-
2 risposta
- voti
-
- 2013-03-11
Sto usando due loop. Ilprimo ciclomostrail contenuto dellapaginae il secondo ciclomostrail contenuto delpostinterrogato. Ho commentatoi codici dovenecessario. Ho sottolineatonei loop,come Deckster0 ha detto nel supporto WordPress che,
the_content()
funziona solo all'interno di un ciclo di WordPress. Stoinserendo questo codicein unmiomodello:<?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 -->
-
Quella seconda querynon dovrebbeessere dentro `if (have_posts ())`perché quell'istruzione sarà sempre vera.Dovresti chiamare `if ($my_query-> have_posts ())` dopo `$my_query=new WP_Query ('cat=1');`e args se vuoi controllare che la query abbia risultati.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 hai ragione.È colpamia.Ora correttoil codicein tale.Grazieper l'identificazione.:)@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
Due cicli sono comuniperfarlo,ma unpo 'overdose.
Ogni articolo opaginati fornisce la supervariabile
$post
.Ti seimai chiestoperchéiltuoget_post_meta()
funziona con un semplice$post->ID
;)?Quindi,prima di avviare WP_Query () che ottienei postelencati,puoi accedere ai datipagina/post correnti con
$post->ID
,$post->post_content
,$post->guid
e così via.Nel loop,questa variabile viene riempita dalpostin loop.Per salvarloper dopo,puoi creare unanuova variabile
$temp_post = $post // new WP_Query() + loop here
o chiama
wp_reset_query ()
dopo l'elenco.L'ultimafunzione dovrebbeessere chiamata comunquepergarantire chei datinellabarra laterale siano correttiper lapagina/post corrente.
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.
Nelmio sito WordPress,ho creato unmodello dipaginapersonalizzato,che conteneva una querypersonalizzata [utilizzando
WP_Query()
].Con questa query,posso ottenereperfettamentei post di una determinata categoria.Ma vogliomostrareil contenuto dellapaginainsieme aipostinterrogati.La cosa sarà come:
---------------------------
Intestazionepagina
contenuto dellapagina
Intestazione delpostinterrogato
contenuto delpostinterrogato
---------------------------