Balise h1, h2...
Fermé
strekers
Messages postés
266
Date d'inscription
mercredi 9 juillet 2008
Statut
Membre
Dernière intervention
30 mai 2023
-
7 nov. 2015 à 20:37
strekers Messages postés 266 Date d'inscription mercredi 9 juillet 2008 Statut Membre Dernière intervention 30 mai 2023 - 12 nov. 2015 à 21:52
strekers Messages postés 266 Date d'inscription mercredi 9 juillet 2008 Statut Membre Dernière intervention 30 mai 2023 - 12 nov. 2015 à 21:52
A voir également:
- Balise h1, h2...
- H1 h2 h3 ✓ - Forum Webmastering
- Balise br ✓ - Forum Webmastering
- Probleme avec les h1 h2 h3 - Forum Webmastering
- H2 test w - Télécharger - Informations & Diagnostic
- Balise <br> avec l'attribut class ✓ - Forum CSS
2 réponses
elgazar
Messages postés
5841
Date d'inscription
mercredi 30 octobre 2013
Statut
Membre
Dernière intervention
17 mars 2021
1 325
7 nov. 2015 à 22:49
7 nov. 2015 à 22:49
Bonjour
ce que tu cherches n'est pas dans ce fichier mais dans le fichier content.php.
single.php sert juste a assembler divers parties d'autres fichiers correspondantes au post. les parties de fichiers sont décrites dans les get_template_part
get_template_part('post','content'); signifie: va dans le fichier content.php et récupére la partie consacrée aux posts puis affiche la
ce que tu cherches n'est pas dans ce fichier mais dans le fichier content.php.
single.php sert juste a assembler divers parties d'autres fichiers correspondantes au post. les parties de fichiers sont décrites dans les get_template_part
get_template_part('post','content'); signifie: va dans le fichier content.php et récupére la partie consacrée aux posts puis affiche la
strekers
Messages postés
266
Date d'inscription
mercredi 9 juillet 2008
Statut
Membre
Dernière intervention
30 mai 2023
8 nov. 2015 à 13:56
8 nov. 2015 à 13:56
Merci voici Post content.php
<div id="post-<?php the_ID(); ?>" <?php post_class('enigma_blog_full'); ?>>
<ul class="blog-date-left">
<li class="enigma_post_date">
<?php if ( ('d M y') == get_option( 'date_format' ) ) : ?>
<span class="date"><?php echo get_the_date('d'); ?></span><h6><?php echo get_the_date('M y'); ?></h6>
<?php else : ?>
<span class="date"><?php echo get_the_date(); ?></span>
<?php endif; ?>
</li>
<li class="enigma_post_author"><?php echo get_avatar(get_the_author_meta( 'ID' ),96); ?></li>
<li class="enigma_blog_comment"><i class="fa fa-comments-o"></i><h6><?php comments_popup_link( '0', '1', '%', '', '-'); ?></h6></li>
</ul>
<div class="post-content-wrap">
<?php if(has_post_thumbnail()):
$img = array('class' => 'enigma_img_responsive'); ?>
<div class="enigma_blog_thumb_wrapper_showcase">
<div class="enigma_blog-img">
<?php the_post_thumbnail('blog_2c_thumb',$img); ?>
</div>
<?php if (is_home()) : ?>
<div class="enigma_blog_thumb_wrapper_showcase_overlay">
<div class="enigma_blog_thumb_wrapper_showcase_overlay_inner ">
<div class="enigma_blog_thumb_wrapper_showcase_icons">
<a title="<?php the_title_attribute(); ?>" href="<?php the_permalink(); ?>"><i class="fa fa-link"></i></a>
</div>
</div>
</div>
<?php endif; ?>
</div>
<?php endif; ?>
<div class="enigma_fuul_blog_detail_padding">
<h2><?php if(!is_single()) {?><a href="<?php the_permalink(); ?>"><?php } ?><?php the_title(); ?></a></h2>
<div class="row">
<div class="col-md-6 col-sm-3">
<?php if(get_the_tag_list() != '') { ?>
<p class="enigma_tags"><?php the_tags( __('Tags : ','weblizar'), '', '<br />'); ?></p>
<?php } ?>
</div>
<div class="col-md-6 col-sm-3">
<?php if(get_the_category_list() != '') { ?>
<p class="enigma_cats"><?php echo __("Category : ",'weblizar');
the_category(' , '); ?></p>
<?php } ?>
</div>
</div>
<?php the_content( __( 'Read More' , 'weblizar' ) );
$defaults = array(
'before' => '<div class="enigma_blog_pagination"><div class="enigma_blog_pagi">' . __( 'Pages:','weblizar' ),
'after' => '</div></div>',
'link_before' => '',
'link_after' => '',
'next_or_number' => 'number',
'separator' => ' ',
'nextpagelink' => __( 'Next page' ,'weblizar' ),
'previouspagelink' => __( 'Previous page' ,'weblizar'),
'pagelink' => '%',
'echo' => 1
);
wp_link_pages( $defaults ); ?>
</div>
</div>
</div>
<div class="push-right">
<hr class="blog-sep header-sep">
</div>
<div id="post-<?php the_ID(); ?>" <?php post_class('enigma_blog_full'); ?>>
<ul class="blog-date-left">
<li class="enigma_post_date">
<?php if ( ('d M y') == get_option( 'date_format' ) ) : ?>
<span class="date"><?php echo get_the_date('d'); ?></span><h6><?php echo get_the_date('M y'); ?></h6>
<?php else : ?>
<span class="date"><?php echo get_the_date(); ?></span>
<?php endif; ?>
</li>
<li class="enigma_post_author"><?php echo get_avatar(get_the_author_meta( 'ID' ),96); ?></li>
<li class="enigma_blog_comment"><i class="fa fa-comments-o"></i><h6><?php comments_popup_link( '0', '1', '%', '', '-'); ?></h6></li>
</ul>
<div class="post-content-wrap">
<?php if(has_post_thumbnail()):
$img = array('class' => 'enigma_img_responsive'); ?>
<div class="enigma_blog_thumb_wrapper_showcase">
<div class="enigma_blog-img">
<?php the_post_thumbnail('blog_2c_thumb',$img); ?>
</div>
<?php if (is_home()) : ?>
<div class="enigma_blog_thumb_wrapper_showcase_overlay">
<div class="enigma_blog_thumb_wrapper_showcase_overlay_inner ">
<div class="enigma_blog_thumb_wrapper_showcase_icons">
<a title="<?php the_title_attribute(); ?>" href="<?php the_permalink(); ?>"><i class="fa fa-link"></i></a>
</div>
</div>
</div>
<?php endif; ?>
</div>
<?php endif; ?>
<div class="enigma_fuul_blog_detail_padding">
<h2><?php if(!is_single()) {?><a href="<?php the_permalink(); ?>"><?php } ?><?php the_title(); ?></a></h2>
<div class="row">
<div class="col-md-6 col-sm-3">
<?php if(get_the_tag_list() != '') { ?>
<p class="enigma_tags"><?php the_tags( __('Tags : ','weblizar'), '', '<br />'); ?></p>
<?php } ?>
</div>
<div class="col-md-6 col-sm-3">
<?php if(get_the_category_list() != '') { ?>
<p class="enigma_cats"><?php echo __("Category : ",'weblizar');
the_category(' , '); ?></p>
<?php } ?>
</div>
</div>
<?php the_content( __( 'Read More' , 'weblizar' ) );
$defaults = array(
'before' => '<div class="enigma_blog_pagination"><div class="enigma_blog_pagi">' . __( 'Pages:','weblizar' ),
'after' => '</div></div>',
'link_before' => '',
'link_after' => '',
'next_or_number' => 'number',
'separator' => ' ',
'nextpagelink' => __( 'Next page' ,'weblizar' ),
'previouspagelink' => __( 'Previous page' ,'weblizar'),
'pagelink' => '%',
'echo' => 1
);
wp_link_pages( $defaults ); ?>
</div>
</div>
</div>
<div class="push-right">
<hr class="blog-sep header-sep">
</div>
elgazar
Messages postés
5841
Date d'inscription
mercredi 30 octobre 2013
Statut
Membre
Dernière intervention
17 mars 2021
1 325
8 nov. 2015 à 19:09
8 nov. 2015 à 19:09
ok mais tu veux faire quoi exactement ?
elgazar
Messages postés
5841
Date d'inscription
mercredi 30 octobre 2013
Statut
Membre
Dernière intervention
17 mars 2021
1 325
>
strekers
9 nov. 2015 à 07:34
9 nov. 2015 à 07:34
Normalement elles y sont déjà, wordpress les insère automatiquement dans le thème
le h1 est le titre de la page (ou le nom du site) dans le header, le h2 est la description du site et/ou le titre de l'article (suivant la page)
dans ton code de post-content, tu as déjà le h2 titre de l'article pour la page single
Logiquement, le h1 doit se trouver dans le fichier header.php du thème
le h1 est le titre de la page (ou le nom du site) dans le header, le h2 est la description du site et/ou le titre de l'article (suivant la page)
dans ton code de post-content, tu as déjà le h2 titre de l'article pour la page single
<h2><?php if(!is_single()) {?><a href="<?php the_permalink(); ?>"><?php } ?><?php the_title(); ?></a></h2>
Logiquement, le h1 doit se trouver dans le fichier header.php du thème
elgazar
Messages postés
5841
Date d'inscription
mercredi 30 octobre 2013
Statut
Membre
Dernière intervention
17 mars 2021
1 325
>
strekers
9 nov. 2015 à 16:53
9 nov. 2015 à 16:53
de quelle phrase clé parles-tu ? parce que ce n'est pas un terme qui existe donc j'aimerais être certain qu'on parle de la même chose