我想在image2类中插入一个图像,如下面的代码所示。我尝试了很多不同的东西,但是我得到了一个"?"每一次。
图片上传到我的网站运行的同一网站上。
目录文件:/www/wp-content/themes/jonas/images/meg.jpg
这是我的wordpress主题的index.php文件。
<?php
get_header();
?>
<div class="intro-tekst">
<h1>HI, IM A DESIGN STUDENT FROM NORWAY</h1>
<h3>Scroll down for work:-)</h3>
<div class="image2">
<!-- I want to insert "meg.jpg" image here -->
</div>
</div>
<?php
if (have_posts()) :
while (have_posts()) : the_post(); ?>
<div class="wrap">
<article class="post">
<h2 class="overskrift"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
</article>
</div>
<?php endwhile;
else :
echo "<p>No content found</p>";
endif;
get_footer();
?>
答案 0 :(得分:0)
你可以使用get_site_url
功能试试这个:
get_header();
?>
<div class="intro-tekst">
<h1>HI, IM A DESIGN STUDENT FROM NORWAY</h1>
<h3>Scroll down for work:-)</h3>
<div class="image2">
<img src="<?php echo get_site_url(); ?>/wp-content/themes/jonas/images/meg.jpg" />
</div>
</div>
<?php
if (have_posts()) :
while (have_posts()) : the_post(); ?>
<div class="wrap">
<article class="post">
<h2 class="overskrift"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
</article>
</div>
<?php endwhile;
else :
echo "<p>No content found</p>";
endif;
get_footer();
?>