使用模板 URL WordPress 添加时,图像未显示在其他系统上



我想在WordPress Post中插入一个图像,我想提供一个动态URL,以便在主机发生变化时它会自动更改。这是我的代码:

<div class="hmbox-right">
 <h1>Quality</h1>
  <img src="<?php bloginfo('template_url'); ?>/images/logo.jpg">
  <p>Welcome to Turn Tekniks India, TUV ISO 2001 company, Manufacturer of Compasses (Drawing Instrument, Pencil Sharpeners and Crayon Holder.</p>   
</div>

试试这个

<div class="hmbox-right">
<h1>Quality</h1>
<img src="<?php get_template_directory(); ?>images/logo.png" alt="logo"
<p>Welcome to Turn Tekniks India, TUV ISO 2001 company, Manufacturer of Compasses (Drawing Instrument, Pencil Sharpeners and Crayon Holder.</p>   
</div>

这应该有效!

最新更新