Hey.
Well, as you probably know most Wordpress themes keep their graphic files in
[U]http://localhost/wordpress/wp-content/themes/skinname/images[/U]
To access a image named 1.jpg we need to use WP function:
<img src=“<?php bloginfo(‘template_directory’); ?>/images/1.jpg” />
Easy so far?
Ok, so now I need to access some graphic directly from a page.
And it doesn’t work since there is no way of putting PHP scripts on pages (I can edit page.php, but it’s pointless I guess?).
What to do? I’m thinking about something like <img src=./././something.jpg> but I guess I’m wrong?
Thanks.