我想使用<?php bloginfo('stylesheet_directory'); ?>
我的 wordpress 循环内部来引用图像,但不确定如何执行此操作。我的图像代码如下:
<?php
if (is_category('Events')) {
echo '<img src="http://localhost/mmj/wp-content/themes/child-theme/img/live-banner.jpg" class="live-holder-img" />';
} else if (is_category('News')) {
echo '<img src="http://localhost/mmj/wp-content/themes/child-theme/img/live-banner.jpg" class="live-holder-img" />';
} else {
echo '<img src="" class="default" />';
} ?>
我宁愿替换http://localhost/mmj/wp-content/themes/child-theme
为,<?php bloginfo('stylesheet_directory'); ?>
但我知道我不能包含<?php
在里面<?php
,所以我想知道我该怎么做?