php - How to show different images using owl carousel on different resolutions ? WordPress -


is possible use different images , show images based on screen resolution ? example if 5 images image1, image2, image3, image4 , image5. want show image1, image2 , image3 on desktop while when comes mobile devices want show image4 , image4 nothing else. can go in way or other way ? 1 guide me hope clear want perform?

yes can used condition set image like

https://codex.wordpress.org/function_reference/wp_is_mobile

<?php if ( wp_is_mobile() ) {     /* display , echo mobile specific stuff here */     }  ?> 

Comments