Добавить название класса в миниатюру сообщения
3 ответ
- голосов
-
- 2013-06-06
Да,вы можете передать класс,который хотите использовать,в
the_post_thumbnail()
как часть аргумента атрибутов,например<?php the_post_thumbnail('thumbnail', array('class' => 'your-class-name')); ?>
Ссылка: 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
-
Но это удалит класс «attachment- $ size».But this will remove the class `attachment-$size`.
- 5
- 2013-06-06
- fuxia
-
Но можете ли вы добавить класс «attachment- $ sizemy-class-name»But can you add the class "attachment-$size my-class-name"
- 0
- 2013-06-07
- Simon Cooper
-
@SimonCooper Я сделал,и теперь у класса есть приложение - без размера.@SimonCooper I did and the class now has attachment- without the size.
- 0
- 2015-04-27
- Zhianc
-
Как правило,это плохое и нестандартное решение.Даже размер прикрепленного файла с жестким кодированием стирает все возможные инъекции классов в будущем.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
Вы можете фильтровать эти классы.
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');
Добавьте фильтр непосредственно перед вызовом
the_post_thumbnail
.Фильтр удалится автоматически.Чтобы добраться туда,нужно немного пройти,но
the_post_thumbnail
используетget_the_post_thumbnail
,который используетwp_get_attachment_image
,который применяет этот фильтр.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.-
Имеет ли имя функции «alter_attr_wpse_102158» особое значение,может ли эта функция называтьсяmyClass -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
-
Имя носит описательный характер,и суффикс ссылается на этот вопрос.В остальном особого смысла нет.Изнутри экземпляра класса - скажем,класса плагина - вы можете использовать `array ($this,'methodname')`,и вы можете использовать статические классы с фильтрами,используя `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
-
Почему вы добавляете фильтр,который самоуничтожается?Why are you adding a filter that removes itself?
- 1
- 2013-09-29
- AlxVallejo
-
@AlxVallejo: чтобы он запускался только один раз в определенных обстоятельствах,когда вы хотите,чтобы он запускался.@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
У вашего тега изображения нет класса,вы просто пишете этот код
<?php the_post_thumbnail(); ?>
но у вашего тега изображения есть класс,вы просто пишете этот код<?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' )); ?>
Я использую миниатюры сообщений для ссылки на страницу.
Можно ли добавить имя класса к миниатюре публикации.