Fügen Sie dem Post-Thumbnail einen Klassennamen hinzu
3 Antworten
- Stimmen
-
- 2013-06-06
Ja - Sie können die Klasse,die Sie verwendenmöchten,als Teil des Attributarguments an
the_post_thumbnail()
übergeben,z. B.<?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
-
Dadurch wirdjedoch die Klasse `Anhang- $ Größe`entfernt.But this will remove the class `attachment-$size`.
- 5
- 2013-06-06
- fuxia
-
Aber können Sie die Klasse "Anhang- $ Größemein-Klassenname" hinzufügen?But can you add the class "attachment-$size my-class-name"
- 0
- 2013-06-07
- Simon Cooper
-
@ SimonCooper habeichgemacht und die Klasse hatjetzt Anhang - ohne die Größe.@SimonCooper I did and the class now has attachment- without the size.
- 0
- 2015-04-27
- Zhianc
-
Diesistim Allgemeineneine schlechte undnichtgenerische Lösung.Selbst die Hardcodierung der Anhangsgröße löscht allemöglichen zukünftigen Klasseninjektionen.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
Sie können diese Klassenfiltern.
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');
Fügen Sie den Filter hinzu,bevor Sie
the_post_thumbnail
aufrufen.Der Filterentfernt sich automatisch.Esistein bisschen schwierig,dorthin zugelangen,aber
the_post_thumbnail
verwendetget_the_post_thumbnail
,derwp_get_attachment_image
,das diesen Filter anwendet.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.-
Hat der Funktionsname 'alter_attr_wpse_102158'eine besondere Bedeutung,könnte diese Funktion alsmyClassbezeichnet werden -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
-
Der Nameistetwasbeschreibend und das Suffix verweist auf diese Frage.Ansonsten keinebesondere Bedeutung.Innerhalbeiner Klasseninstanz -beispielsweiseeiner Plugin-Klasse - können Sie "array ($this,'methodname')" und statische Klassenmit Filtern verwenden,indem Sie "array ('ClassName','methodname')" verwendenThe 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
-
Warumfügen Sieeinen Filter hinzu,der sich selbstentfernt?Why are you adding a filter that removes itself?
- 1
- 2013-09-29
- AlxVallejo
-
@AlxVallejo: Damitesnureinmal ausgeführt wird,wenn Siemöchten,dasses ausgeführt wird.@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
Ihr Bild-Tag hat keine Klasse. Schreiben Sieeinfach diesen Code
<?php the_post_thumbnail(); ?>
,aber Ihr Bild-Tag hateine Klasse. Schreiben Sieeinfach diesen 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' )); ?>
Ich verwende Post-Thumbnails,um aufeine Seite zu verlinken.
Istesmöglich,dem Miniaturbild des Beitragseinen Klassennamen hinzuzufügen.