Adicionar nome de classe para postar miniatura
3 respostas
- votos
-
- 2013-06-06
Sim - vocêpodepassarna aula que você deseja usarpara
the_post_thumbnail()
comoparte do argumento de atributos,porexemplo<?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
-
Masisso removerá otamanho da classe 'anexo - $`.But this will remove the class `attachment-$size`.
- 5
- 2013-06-06
- fuxia
-
Mas vocêpode adicionar a classe "anexo- $ Size My-Class-Name"But can you add the class "attachment-$size my-class-name"
- 0
- 2013-06-07
- Simon Cooper
-
@Simoncooper Eue a classe agoratem anexo - sem otamanho.@SimonCooper I did and the class now has attachment- without the size.
- 0
- 2015-04-27
- Zhianc
-
Isso égeralmentemáe nãogenérica.Mesmo o anexo de disco rígido -tamanho de $,apagatodas aspossíveisinjeçõesfuturas de 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
Vocêpodefiltraressas 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');
Adicione ofiltro antes de ligar
the_post_thumbnail
.Ofiltro se removerá automaticamente.É umpouco de caminhadapara chegar lá,mas
the_post_thumbnail
usaget_the_post_thumbnail
que usawp_get_attachment_image
Aplicaessefiltro.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.-
Onome dafunção 'alter_attr_wpse_102158'tem um significadoespecíficopode ser chamado demyclass -função MyClass ($ 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
-
Onome é umpouco descritivoe o sufixo referenciaesta questão.Caso contrário,nenhum significadoparticular.De dentro de umainstância de classe - diga uma classe deplugin-- Vocêpode usar a "matriz ($this,'MethodeName')`e vocêpode usar classesestáticas comfiltros usando `array ('classname','metodame')`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#notes.http://codex.wordpress.org/Function_Reference/add_filter#Notes
- 0
- 2013-06-07
- s_ha_dum
-
Por que vocêestá adicionando umfiltro que se remove?Why are you adding a filter that removes itself?
- 1
- 2013-09-29
- AlxVallejo
-
@AlxVallejo: demodo que sófunciona uma vezna circunstânciaparticular que você quer queele sejaexecutado.@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
Suamarca deimagemnãotem aula você acabou deescrevereste código
<?php the_post_thumbnail(); ?>
mas suatag deimagemtem aula você acabou deescrevereste 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' )); ?>
Estou usandopós-miniaturaspara vincular a umapágina.
Épossível adicionar umnome de classe àimagempós-miniatura.