我正在尝试在我公司的WordPress网站的XAMPP上创建一个本地版本。
除了主题图片没有加载外,一切都很好。(正在加载CMS图像)
查看图像路径,我注意到它们为什么没有加载。根目录不存在。是的;
http://localhost/wp-content/themes/stepladder/images/homepage-hero/header-hero-SL.png
应为;
http://localhost/stepladder/wp-content/themes/stepladder/images/homepage-hero/header-hero-SL.png
这是我用于主题图像的代码;
<span><?php the_title(); ?><img src="<?php echo get_template_directory_uri(); ?>/images/border-white.png" class="underline"></span>
我也试过了;
<?php bloginfo(\'template_directory\'); ?>
但结果是一样的。
奇怪的是,这个模板标记成功地加载了其他资源,比如脚本(来自functions.php)