Affichage blog

Hello,

Su ma page blog, j'ai cette présentation :
blog.png

Il manque les autres informations :
Auteur, commentaires, rubriques, etc..

et je ne sais pas pourquoi ?

Merci de votre aide

Jol

Réponses

  • Bonjour,

    A l'intérieur de ta balise article as-tu un footer et un header ?
                                                    <header>
    							<h2>
    								<?php $plxShow->artTitle('link'); ?>
    							</h2>
    							<small>
    								<span class="written-by">
    									<?php $plxShow->lang('WRITTEN_BY'); ?> <?php $plxShow->artAuthor() ?>
    								</span>
    								<time class="art-date" datetime="<?php $plxShow->artDate('#num_year(4)-#num_month-#num_day'); ?>">
    									<?php $plxShow->artDate('#num_day #month #num_year(4)'); ?>
    								</time>
    								<span class="art-nb-com">
    									<?php $plxShow->artNbCom(); ?>
    								</span>
    							</small>
    						</header>
    
    						
    						<?php $plxShow->artThumbnail(); ?>
    						<?php $plxShow->artChapo(); ?>
    						
    
    						<footer>
    							<small>
    								<span class="classified-in">
    									<?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat() ?>
    								</span>
    								<span class="tags">
    									<?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags() ?>
    								</span>
    							</small>
    						</footer>
    
  • balise article dans quel fichier ?
  • cpalocpalo Member
    décembre 2017 modifié
    Dans le template home.php :
    <main class="main">
    
    		<div class="container">
    
    			<div class="grid">
    
    				<div class="content col sml-12 med-8">
    
    					<?php while($plxShow->plxMotor->plxRecord_arts->loop()): ?>
    
    					<article class="article" id="post-<?php echo $plxShow->artId(); ?>">
    
    						<header>
                                                            <h2>
    								<?php $plxShow->artTitle('link'); ?>
    							</h2>
    							<small>
    								<span class="written-by">
    									<?php $plxShow->lang('WRITTEN_BY'); ?> <?php $plxShow->artAuthor() ?>
    								</span>
    								<time class="art-date" datetime="<?php $plxShow->artDate('#num_year(4)-#num_month-#num_day'); ?>">
    									<?php $plxShow->artDate('#num_day #month #num_year(4)'); ?>
    								</time>
    								<span class="art-nb-com">
    									<?php $plxShow->artNbCom(); ?>
    								</span>
    							</small>
    						</header>
    
    						
    						<?php $plxShow->artThumbnail(); ?>
    						<?php $plxShow->artChapo(); ?>
    						
                                                    <footer>
    							<small>
    								<span class="classified-in">
    									<?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat() ?>
    								</span>
    								<span class="tags">
    									<?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags() ?>
    								</span>
    							</small>
    						</footer>
    
    					</article>
    
    
  • Merci Cpalo,

    Problème résolu !
Connectez-vous ou Inscrivez-vous pour répondre.