mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://wordpress.org/support/topic/need-to-have-the-autoptimize-css-file-inserted-later-in/
4 lines
172 B
Text
4 lines
172 B
Text
add_filter('autoptimize_filter_css_replacetag','override_aocss_replacetag',10,1);
|
|
function override_aocss_replacetag($replacetag) {
|
|
return array("</head>","before");
|
|
}
|