我正在通过仪表板在我的页面上添加一个特色图像,我想将其用作页面容器div上的背景图像。我想通过css应用背景图像,所以我想在标记中添加一个样式属性。我想做这样的东西:
<div id="<?php echo $post_name; ?>" class="page<?php echo $post_id; ?>" style="background: url(<?php wp_get_attachment_image_src( get_post_thumbnail_id(), \'large\' ); ?>) !important;">
但不幸的是,这不起作用。
当我检查输出时,如下所示:
background: url() !important;
这有什么问题吗?有什么建议吗?谢谢