2010-03-29, 05:26:03
ensure all links to external CSS/JS files include the path to the theme in them, e.g.
Also ensure all hardcoded local images src is set to
Code:
<link rel="stylesheet" href="<?php get_theme_url(); ?>/css/style.css" type="text/css" />
Code:
<script src="<?php get_theme_url(); ?>/js/yoursite.js" type="text/javascript" charset="utf-8"></script>
Also ensure all hardcoded local images src is set to
Code:
src="<?php get_theme_url(); ?>/path_to_your.jpg"