我的 php 文件中有这个:
echo '<div class="tab_icon tab_'.(empty($post_format) ? 'standard' : $post_format).'" >';
我还想在这里插入一个样式属性。
这是我的尝试:
echo '<div class="tab_icon tab_'.(empty($post_format) ? 'standard' : $post_format).' style="background-image: url('.get_post_image( $post->ID, "small").');" " >';
但不能正常工作,输出是这样的:
<div class="tab_icon tab_image style=" background-image:="" url(http:="" thehue.co="" wp-content="" uploads="" 2013="" 09="" untitled-22-194x150.jpg);"="" "=""></div>
如何在其中正确应用样式属性?谢谢!