我正试图通过localhost为客户端开发一个WP主题。我在Windows 8上使用XAMPP,并且已经为类似myclient的东西设置了vhost。dev.这适用于样式表
<?= get_stylesheet_uri(); ?>
但是当尝试使用
get_stylesheet_directory()
(主要针对图像)我走错了路:所以
<img class="logo" src="<?= get_stylesheet_directory(); ?>//images/logo.png">
src返回:
http://myclient.dev/C:/Users/..../Localhost/hfclients.dev/myclient.dev/wp-content/themes/myclient.dev/images/cta-banner.jpg
我怎样才能解决这个问题?