Bonjour,
J’essais d’insérer une icone commentaire dans les meta de mes articles sur mon site wordpress :
atelier.gasbe.net/

Thème utilisé : fr.wordpress.org/themes/flat/

J'ai bien réussi à placer celle du calendrier mais je n'arrive pas à placer celle des commentaires.
<i class="fa fa-comments" aria-hidden="true"></i>


Voilà le code de mon fichier content.php
<article itemscope itemtype="http://schema.org/Article" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
	<header class="entry-header">
		<h2 class="entry-title" itemprop="name">
			<a itemprop="url" href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'flat' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
		</h2>
		<?php $archive_metadata = flat_get_theme_option( 'archive_metadata' ); ?>
		<?php if ( empty( $archive_metadata ) ) : ?>
			<div class="entry-meta"><i style="color:#1f6699" class="fa fa-calendar-o" aria-hidden="true"></i> 
			
			<?php flat_entry_meta(); ?></div>
		<?php endif; ?>
	</header>
	<?php $archive_featured_image = flat_get_theme_option( 'archive_featured_image' ) ?>
	<?php if ( has_post_thumbnail() && ! post_password_required() && empty( $archive_featured_image ) ) : ?>
		<div class="entry-thumbnail"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'flat' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_post_thumbnail( 'post-thumbnail', array( 'itemprop' => 'thumbnailUrl' ) ); ?></a></div>
	<?php endif; ?>
	<?php $archive_content = flat_get_theme_option( 'archive_content' ); ?>
		<?php flat_hook_entry_before(); ?>
	<?php if ( empty( $archive_content ) ) : ?>
		<div class="entry-content" itemprop="articleBody">
			<?php flat_hook_entry_top(); ?>
			<?php the_content( __( 'Continue reading', 'flat' ) ); ?>
			<?php wp_link_pages(
				array(
				'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'flat' ) . '</span>',
				'after' => '</div>',
				'link_before' => '<span>',
				'link_after' => '</span>',
				)
			); ?>
			<?php flat_hook_entry_bottom(); ?>
		</div>
	<?php else : ?>
		<div class="entry-summary" itemprop="description">
			<?php flat_hook_entry_top(); ?>
			<?php the_excerpt(); ?>
			<?php flat_hook_entry_bottom(); ?>
		</div>
	<?php endif; ?>
		<?php flat_hook_entry_after(); ?>
</article>


Quand je place
<i class="fa fa-comments" aria-hidden="true"></i>
dans la div entry-meta ça ne fonctionne pas.

upload/1556467765-75427-capture.jpg

Est-ce bien dans ce fichier que je peux faire cette modif ?
D'avance merci
Modifié par demisel (28 Apr 2019 - 18:09)