Я практикую WordPress и сейчас застрял.
Когда я смотрю на front-page.php в своем браузере, все изображения видны, но когда я смотрю на page.php в браузере, ни одно из изображений не видно, оба имеют идентичные пути к некоторымimages, но page.php не будет отображать никаких изображений, похоже, что он не может найти изображения или что-то в этом роде.
Я пытался жестко закодировать путь img, но безуспешно.
Нижемой Page.php код
<?php get_header();?> <!--- There are an image inside the header aswell, it will not display when I look at page.php in browser--->
<div class="container pt-5 pb-5">
<?php if (have_posts()) : while(have_posts()) : the_post();?>
<div class="row rounded p-5">
<?php the_content();?>
</div>
<?php endwhile; endif;?>
<img src="wp-content/themes/Newtheme/bilder/cosmic-heart-of-the-universe-shawn-dall.jpg">
</div>
<?php get_footer();?>