javascript - Wordpress wont find files -
i installed wordpress on , want landing page display, modified html templates , sliced them index.php, header.php, footer.php , sidebar.php.
i put style.css in theme root, , there images in img , image directories, additional css in css directory, , javascript , jquery in js directory.
my problem wordpress doesn't load of files. template, , when click on 1 of them in source got error 404.
i tried change permissions, tried several ways of including files, tried find on google, , today deadline, got project yesterday, appreciated. thanks.
you might not added <?php bloginfo('template_directory') ?>
in template have added js , css.. must add in url work..
e.g.
<script type="text/javascript" src="<?php bloginfo('template_directory') ?>/js/jquery.easing.1.3.js"></script> <link rel="shortcut icon" href="<?php bloginfo('template_directory') ?>/images/favicon.ico"> <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory') ?>/style.css">
edit : if above solution not working please refer link
Comments
Post a Comment