Agrega el nombre de la clase a la miniatura de la publicación
3 respuestas
- votos
-
- 2013-06-06
Sí,puedepasar la clase que desea usar a
the_post_thumbnail()
comoparte del argumento de atributos,porejemplo<?php the_post_thumbnail('thumbnail', array('class' => 'your-class-name')); ?>
Ref: 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
-
Peroestoeliminará la clase `adjunto- $tamaño`.But this will remove the class `attachment-$size`.
- 5
- 2013-06-06
- fuxia
-
¿Peropuede agregar la clase "adjunto- $tamañomi-nombre-clase"But can you add the class "attachment-$size my-class-name"
- 0
- 2013-06-07
- Simon Cooper
-
@SimonCooper Lo hice y la clase ahoratiene un archivo adjunto,sineltamaño.@SimonCooper I did and the class now has attachment- without the size.
- 0
- 2015-04-27
- Zhianc
-
Estaes una solucióngeneralmentemala ynogenérica.Incluso codificarel archivo adjunto $ sizeborratodas lasposiblesinyecciones de clasesfuturas.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
Puedefiltraresas clases.
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');
Agregueelfiltrojusto antes de llamar a
the_post_thumbnail
.Elfiltro seeliminará automáticamente.Es unpoco difícil llegar allí,pero
the_post_thumbnail
usaget_the_post_thumbnail
que usawp_get_attachment_image
que aplicaesefiltro.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.-
¿Tieneelnombre de lafunción 'alter_attr_wpse_102158' un significadoparticular? ¿Podría llamarseestafunciónmyClass -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
-
Elnombrees algo descriptivo yel sufijo hace referencia aestapregunta.De lo contrario,notiene un significadoparticular.Desde dentro de unainstancia de clase,digamos una clase de complemento,puede usar `array ($this,'methodname')` ypuede usar clasesestáticas confiltros 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
-
¿Por quéestá agregando unfiltro que seelimina solo?Why are you adding a filter that removes itself?
- 1
- 2013-09-29
- AlxVallejo
-
@AlxVallejo: Para que solo seejecute una vezen la circunstanciaparticularen la que quieres que seejecute.@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
Tuetiqueta deimagennotiene clase,soloescribeeste código
<?php the_post_thumbnail(); ?>
perotuetiqueta deimagentiene clase,soloescribeeste código<?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' )); ?>
Estoy usandominiaturas depublicacionespara vincular a unapágina.
¿Esposible agregar unnombre de clase a laimagenen miniatura de lapublicación?