Absolute path to stylesheet_dir/images/my_img.jpg does not work?

i always start every theme w/ some constants

`
define(‘THEME’, get_bloginfo(‘stylesheet_directory’));
//or you could use this one:
//define(‘THEME’, get_stylesheet_directory_uri());

define(‘IMAGES’, THEME . ‘/images’);
`

and some others, but the point is that at any place in my code i can point to my theme’s image folder


img src = "https://wordpress.stackexchange.com/questions/21398/<?php echo IMAGES ."/image.png';?>"