带有背景图像的古登堡自定义样式问题

时间:2020-01-03 作者:Ünsal Korkmaz

何时调用主题style.css 使用文件add_editor_style 在古腾堡内部,背景图像加载不正确。

让我们说:

#intro {
    background: url(assets/main.png) ;
}
其前端工作正常,如:

mydomain.com/wp-content/themes/mytheme/assets/main.png
但在古腾堡,WordPress试图加载:

mydomain.com/wp-admin/assets/main.png
我错过什么了吗?

1 个回复
SO网友:Muhammad Junaid

您可以通过PHP加载css,

add_action(\'wpmm_head\', \'wpmm_custom_css\');

    function wpmm_custom_css(){
     echo \'<style>
           #intro{
    \'.get_template_directory_uri().\'/assets/main.png;
           }
           </style>\';
    }

相关推荐