web-dev-qa-db-fra.com

Affichage du contenu d'un article

Comment puis-je afficher du contenu pour un seul post? Mon code:

if (is_single()){
    get_header();
    get_sidebar('left-article');
    render_article();
    get_footer();
}

Dans render_article, j'appelle single_post_title() pour obtenir le titre du message. Cependant, je ne sais pas comment obtenir l'heure et le contenu du message car je ne trouve aucune fonction telle que single_post_content() ou single_post_time().

4
Smax Smaxović
  1. Créez un fichier nommé single.php. Cela obtiendra automatiquement tous vos messages individuels. Pour plus d'informations sur la hiérarchie des modèles de WordPress, lisez le Codex

  2. Dans single.php, lancez la boucle par défaut et récupérez les fichiers header.php, sidebar.php et footer.php

    <?php get_header(); ?>
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    
     <?php the_title(); ?>
     <?php the_content(); ?>
     <?php echo get_the_date(); ?>
    
    <?php endwhile; ?>
    <?php endif; ?>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>
    
10
kbrunner

vous pouvez utiliser la fonction ci-dessous pour obtenir le contenu de la publication Wordpress

     <?php echo get_the_content(); ?>

et vous pouvez utiliser la fonction ci-dessous pour obtenir le titre

    <?php echo get_the_title(); ?>

pour obtenir la date, vous pouvez utiliser cette fonction

    <?php echo echo get_the_date(); ?>
2
Ronak Ganatra
function my_category_templates($single_template) {
    global $post;

    if ( in_category( 'Offers' )) {
        $single_template = dirname( __FILE__ ) . '/single-offer.php';
    }

    // Copy the above for your other categories

    return $single_template;
}

add_filter( "single_template", "my_category_templates" );
1
farhan Asad

Utilisez get_post () pour obtenir une publication spécifique

get_post()

Exemple :

<?php $postData = get_post( $id, $output, $filter ); 

echo "<pre>";
print_r($postData);
?>

https://developer.wordpress.org/reference/functions/get_post/

https://www.tipsandtricks-hq.com/query-or-show-a-specific-post-in-wordpress-php-code-example-44

0
Sujal Patel