WordPress
<a href="<?php echo site_url('/contact/'); ?>">Contact</a>
=> http://www.pixbulledev.com/dev1/contact/
ou
<img src="<?php echo get_site_url(); ?>/logo.jpg" />
=> http://www.pixbulledev.com/dev1/logo.jpg
et pour pointer directement dans le répertoire du thème
<img src="<?php bloginfo( 'template_url' ); ?>/img/logo.png" alt="Mon logo"/>
=> http://www.pixbulledev.com/dev1/wp-content/themes/montheme1/img/logo.png
Prestashop (fichiers .tpl)
<a href="{$base_dir}/contact/">
=> http://www.pixbulledev.com/dev1/contact/
et pour pointer directement dans le répertoire du thème
<img src="{$tpl_dir}img/logo.jpg" />
ou
<img src="{$img_dir}logo.jpg" />
=> http://www.pixbulledev.com/dev1/themes/montheme1/img/logo.png
dans le même principe pour les css :
<link href="{$css_dir}style.css" rel="stylesheet" type="text/css" media="all" />
=> http://www.pixbulledev.com/dev1/themes/montheme1/css/style.css
Swan
<a href="<?php echo site_url('/contact/'); ?>">Contact</a>
=> http://www.pixbulledev.com/dev1/contact/