Aggiungi il nome della classe alla miniatura del post
3 risposta
- voti
-
- 2013-06-06
Sì,puoipassare la classe che desideri utilizzare a
the_post_thumbnail()
comeparte dell'argomento attributi,adesempio<?php the_post_thumbnail('thumbnail', array('class' => 'your-class-name')); ?>
Rif: 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
-
Ma questo rimuoverà la classe `attachment- $ size`.But this will remove the class `attachment-$size`.
- 5
- 2013-06-06
- fuxia
-
Mapuoi aggiungere la classe "attachment- $ sizemy-class-name"But can you add the class "attachment-$size my-class-name"
- 0
- 2013-06-07
- Simon Cooper
-
@SimonCooper hofattoe la classe ora ha un allegato,senza le dimensioni.@SimonCooper I did and the class now has attachment- without the size.
- 0
- 2015-04-27
- Zhianc
-
Questa è una soluzionegeneralmente cattivae nongenerica.Anche l'hardcoding allegato- $ size,cancellatutte lepossibilifutureiniezioni di classe.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
Puoifiltrare queste classi.
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');
Aggiungiilfiltro subitoprima di chiamare
the_post_thumbnail
.Ilfiltro si rimuoverà automaticamente.È unpo 'difficile arrivarci,ma
the_post_thumbnail
utilizzaget_the_post_thumbnail
che utilizzawp_get_attachment_image
che applica quelfiltro.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.-
Ilnome dellafunzione "alter_attr_wpse_102158" ha un significatoparticolare,potrebbe questafunzioneessere chiamatamyClass -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
-
Ilnome èin qualchemodo descrittivoe il suffissofa riferimento a questa domanda.Altrimenti,nessun significatoparticolare.Dall'interno di un'istanza di classe,adesempio una classeplug-in,puoi usare `array ($this,'methodname')`e puoi usare classi statiche confiltri usando `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
-
Perché stai aggiungendo unfiltro che si rimuove da solo?Why are you adding a filter that removes itself?
- 1
- 2013-09-29
- AlxVallejo
-
@AlxVallejo:in modo che vengaeseguito solo una voltanellaparticolare circostanzain cui desideri che vengaeseguito.@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
Iltuotagimmaginenon ha una classe,scrivi solo questo codice
<?php the_post_thumbnail(); ?>
mailtuotagimmagine ha una classe,scrivi semplicemente questo codice<?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' )); ?>
Utilizzo leminiature deipostper creare un collegamento a unapagina.
Èpossibile aggiungere unnome di classe all'immaginein miniatura delpost.