我有一个简单的问题,你可能知道。
<img src="images/sample.jpg" />
在常规的WordPress主题中它应该是这样的..
<img src="<?php bloginfo('template_directory'); ?>/images/sample.jpg" />
右?
Genesis主题怎么样?
答案 0 :(得分:1)
如果您使用的是Genesis子主题,则应引用样式表目录:
src="<?php echo get_stylesheet_directory_uri(); ?>/images/sample.jpg"
答案 1 :(得分:0)
每个主题都包含自己的用户定义函数,以实现在您使用的基本功能之外使用更多功能的功能。
我不熟悉Genesis主题,但我也使用了CANVAS等等。在主题开发人员身上,他/她如何使用这个技巧,以便主题功能可以轻松扩展。
我们采取和举例:
<img src="<?php bloginfo('template_directory'); ?>/images/sample.jpg" />
替代方案:
function get_template_image( $image_name = "sample.jpg" ){
echo '<img src="'. get_template_directory_uri() .'/images/'. $image_name .'" />';
}
并将此函数添加到functions.php
文件中。并称之为这样。
get_template_image( "sample.jpg" );