在wordpress中将css类添加到媒体图像中

时间:2017-11-30 07:31:04

标签: css wordpress image class

我在4000后的wordpress中使用了一张图片。现在我需要在该图像中添加自定义类或ID,因此我可以在创建CSS规则时使用它。我可以通过图像媒体添加课程吗?或者还有其他选择吗?

Thats the image that I need to add classes or ID

1 个答案:

答案 0 :(得分:0)

您可以使用" get_image_tag_class"为此:

function add_custom_class($class) {
    $class .= ' some_class_name_here';
    return $class;
}
add_filter('get_image_tag_class', 'add_custom_class' );