web-dev-qa-db-fra.com

Moyen correct d'obtenir le contenu de la page

Je dois obtenir un contenu de page spécifique (comme page (12))

J'ai utilisé ça:

  <?php $id=47; $post = get_page($id); echo $post->post_content;  ?>

Work Nice sauf la compatibilité avec qtranslate return text en français et anglais

Mais la boucle est bonne, ne retourne que la bonne version linguistique

<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<div id="post">
<?php the_content(); ?>
</div> <!-- .post -->

Alors la question .... Comment obtenir un contenu de page spécifique insite la boucle ...

55
menardmam

J'ai répondu à ma propre question. Appel apply_filter et voilà.

<?php 
$id=47; 
$post = get_post($id); 
$content = apply_filters('the_content', $post->post_content); 
echo $content;  
?>
143
menardmam

obtenir le contenu de la page par nom de page:

<?php
$page = get_page_by_title( 'page-name' );
$content = apply_filters('the_content', $page->post_content); 
echo $content;
?>
37
Alex

J'ai utilisé ceci:

<?php echo get_post_field('post_content', $post->ID); ?>

et ceci encore plus concis:

<?= get_post_field('post_content', $post->ID) ?>
9
Fred K

Un moyen simple et rapide d’obtenir le contenu par identifiant:

echo get_post_field('post_content', $id);

Et si vous voulez que le contenu soit formaté:

echo apply_filters('the_content', get_post_field('post_content', $id));

Fonctionne avec les pages, les messages et les messages personnalisés.

7
Creaforge

Il suffit de copier et coller ce code pour obtenir le contenu de votre page.

<?php
                $pageid = get_the_id();
                $content_post = get_post($pageid);
                $content = $content_post->post_content;
                $content = apply_filters('the_content', $content);
                $content = str_replace(']]>', ']]&gt;', $content);
                echo $content;
                ?>
5
naveen kumar

La fonction wp_trim_words peut également limiter les caractères en modifiant la variable $ num_words. Pour quiconque pourrait trouver utile.

<?php 
$id=58; 
$post = get_post($id); 
$content = apply_filters('the_content', $post->post_content); 

$customExcerpt = wp_trim_words( $content, $num_words = 26, $more = '' );
echo $customExcerpt;  
?>
4
keithshaw

Bon mot:

<? if (have_posts()):while(have_posts()): the_post(); the_content(); endwhile; endif; ?>
2
Etienne Dupuis
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array( 'prev_text' >' Previous','post_type' => 'page', 'posts_per_page' => 5, 'paged' => $paged );
$wp_query = new WP_Query($args);
while ( have_posts() ) : the_post();
//get all pages 
the_ID();
the_title();

//if you want specific page of content then write
if(get_the_ID=='11')//make sure to use get_the_ID instead the_ID
{
echo get_the_ID();
the_title();
the_content();
}

endwhile;

// si vous voulez une page de contenu spécifique, écrivez en boucle

  if(get_the_ID=='11')//make sure to use get_the_ID instead the_ID
    {
    echo get_the_ID();
    the_title();
    the_content();
    }
2
Dinesh Bhimani