Ajouter le nom de la classe à la vignette du message
3 réponses
- votes
-
- 2013-06-06
Oui,vouspouvezpasser la classe que vous souhaitez utiliser à
the_post_thumbnail()
dans le cadre de l'argument des attributs,parexemple<?php the_post_thumbnail('thumbnail', array('class' => 'your-class-name')); ?>
Réf: http://codex.wordpress.org/Function_Reference/the_post_thumbnail#Styling_Post_Thumbnails
Yep - you can pass the class you want to use to
the_post_thumbnail()
as part of the attributes argument, for example<?php the_post_thumbnail('thumbnail', array('class' => 'your-class-name')); ?>
Ref: http://codex.wordpress.org/Function_Reference/the_post_thumbnail#Styling_Post_Thumbnails
-
Mais cela supprimera la classe «attachment- $ size».But this will remove the class `attachment-$size`.
- 5
- 2013-06-06
- fuxia
-
Maispouvez-vous ajouter la classe "attachment- $ sizemy-class-name"But can you add the class "attachment-$size my-class-name"
- 0
- 2013-06-07
- Simon Cooper
-
@SimonCooperje l'aifaitet la classe amaintenant l'attachement - sans lataille.@SimonCooper I did and the class now has attachment- without the size.
- 0
- 2015-04-27
- Zhianc
-
C'est une solutiongénéralementmauvaiseet nongénérique.Même l'attachement codéen dur - $ size,effacetoutes lesfuturesinjections de classepossibles.This is generally bad and non-generic solution. Even hardcoding attachment-$size, erases all possible future class injections.
- 0
- 2019-02-18
- Fusion
-
- 2013-06-07
Vouspouvezfiltrer ces classes.
function alter_attr_wpse_102158($attr) { remove_filter('wp_get_attachment_image_attributes','alter_attr_wpse_102158'); $attr['class'] .= ' new-class'; return $attr; } add_filter('wp_get_attachment_image_attributes','alter_attr_wpse_102158');
Ajoutez lefiltrejuste avant d'appeler
the_post_thumbnail
.Lefiltre se supprimera automatiquement.C'est unpeu de cheminpour y arrivermais
the_post_thumbnail
utiliseget_the_post_thumbnail
qui utilisewp_get_attachment_image
qui applique cefiltre.You can filter those classes.
function alter_attr_wpse_102158($attr) { remove_filter('wp_get_attachment_image_attributes','alter_attr_wpse_102158'); $attr['class'] .= ' new-class'; return $attr; } add_filter('wp_get_attachment_image_attributes','alter_attr_wpse_102158');
Add the filter just before you call
the_post_thumbnail
. The filter will remove itself automatically.It is a bit of trek to get there but
the_post_thumbnail
usesget_the_post_thumbnail
which useswp_get_attachment_image
which applies that filter.-
Lenom de lafonction 'alter_attr_wpse_102158' a-t-il une significationparticulièrepourrait-on appeler cettefonctionmyClass -functionmyClass ($ attr) {Does the function name 'alter_attr_wpse_102158' have a particular meaning could this function be called myClass - function myClass($attr) {
- 0
- 2013-06-07
- Simon Cooper
-
Lenomest quelquepeu descriptifet le suffixefait référence à cette question.Sinon,pas de significationparticulière.Depuis l'intérieur d'uneinstance de classe - disons une classe deplugin - vouspouvez utiliser `array ($this,'methodname')`et vouspouvez utiliser des classes statiques avec desfiltresen utilisant `array ('ClassName','methodname')`The name is somewhat descriptive and the suffix references this question. Otherwise, no particular meaning. From inside a class instance-- say a plugin class-- you can use `array($this,'methodname')` and you can use static classes with filters by using `array('ClassName','methodname')`
- 0
- 2013-06-07
- s_ha_dum
-
http://codex.wordpress.org/Function_Reference/add_filter#Noteshttp://codex.wordpress.org/Function_Reference/add_filter#Notes
- 0
- 2013-06-07
- s_ha_dum
-
Pourquoi ajoutez-vous unfiltre qui se supprime?Why are you adding a filter that removes itself?
- 1
- 2013-09-29
- AlxVallejo
-
@AlxVallejo: Pour qu'ilne s'exécute qu'une seulefois dans les circonstancesparticulières que vous souhaitez qu'ilexécute.@AlxVallejo : So that it only runs once in the particular circumstance that that you want it to run.
- 2
- 2013-09-29
- s_ha_dum
-
- 2016-12-29
Votrebalise d'imagen'apas de classe vous venez d'écrire ce code
<?php the_post_thumbnail(); ?>
mais votrebalise d'image a la classe que vous venez d'écrire ce code<?php the_post_thumbnail('thumbnail', array( 'class' => 'class_name' )); ?>
Your image tag have no class you just write this code
<?php the_post_thumbnail(); ?>
but your image tag have class you just write this code<?php the_post_thumbnail('thumbnail', array( 'class' => 'class_name' )); ?>
J'utilise desminiatures depublicationpour créer un lien vers unepage.
Est-ilpossible d'ajouter unnom de classe à l'imageminiature de l'article.