如果您的文件路径设置不正确,您需要在img src中提供图像加载到其他页面的绝对路径,因为相对路径将更改为,
http://yourwebsite.com/page/wp-content/themes/blankslate/images/morebutton.png
相反,它应该是
http://yourwebsite.com/wp-content/themes/blankslate/images/morebutton.png
因此,您应该在函数中定义一个常量。php获取图像目录的路径,然后在img src中使用它。
if( !defined(\'THEME_IMG_PATH\')){
define( \'THEME_IMG_PATH\', get_stylesheet_directory_uri() . \'/images\' );
}
然后您可以使用img标记作为
<img src="<?php echo THEME_IMG_PATH; ?>/morebutton.png" alt=""/>
那会解决你的问题。您可以在主题中的任何位置使用常量,使用起来很方便。