Skip to content
Advertisement

Adding a class to images depending on their orientation in wordpress

I’m building a website with WordPress and I’m using a child theme I created.

I would like to add a class to all my images depending on their orientation. (.portrait or .landscape)
I did it with javascript but I have no idea how to do it with php. (I don’t know very well yet how to use filters and so)

I have 2 questions:

1 – Is it a good idea to do it with php instead of javascript performance-wise ?
2 – If the answer to the previous question is yes, then how can I do that? Using php, how can I check all the images and, depending on their orientation, add the corresponding class (.portrait or .landscape) ?

Advertisement

Answer

  1. Yes, it’s better to do it with PHP rather than JavaScript, for user interaction reasons. The back-end performance cost is negligible.
  2. You’d use a WordPress filter inside of the wp_get_attachment_image function called wp_get_attachment_image_attributes. This lets you change the class attribute before the image is output.

Here’s how the filter would work:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement