Re-order the assets load
-
Hello everyone,
I’m having an issue while loading the assets of my website. This is the order they’re loading:
<link rel='stylesheet' id='comments_evolved_tabs_css-css' href='https://www.example.com/wp-content/plugins/trunk/assets/styles/plugin.css?ver=1.5.8' type='text/css' media='all' /> <script type='text/javascript' src='https://www.example.com/wp-includes/js/admin-bar.min.js?ver=4.0'></script> <script type='text/javascript' src='https://www.example.com/wp-includes/js/comment-reply.min.js?ver=4.0'></script> <script type='text/javascript' src='https://www.example.com/wp-includes/js/jquery/ui/jquery.ui.core.min.js?ver=1.10.4'></script> <script type='text/javascript' src='https://www.example.com/wp-includes/js/jquery/ui/jquery.ui.widget.min.js?ver=1.10.4'></script> <script type='text/javascript' src='https://www.example.com/wp-includes/js/jquery/ui/jquery.ui.tabs.min.js?ver=1.10.4'></script>
But I need them to load in this order:
<link rel='stylesheet' id='comments_evolved_tabs_css-css' href='https://www.example.com/wp-content/plugins/trunk/assets/styles/plugin.css?ver=1.5.8' type='text/css' media='all' /> <script type='text/javascript' src='https://www.example.com/wp-includes/js/jquery/ui/jquery.ui.core.min.js?ver=1.10.4'></script> <script type='text/javascript' src='https://www.example.com/wp-includes/js/jquery/ui/jquery.ui.widget.min.js?ver=1.10.4'></script> <script type='text/javascript' src='https://www.example.com/wp-includes/js/jquery/ui/jquery.ui.tabs.min.js?ver=1.10.4'></script> <script type='text/javascript' src='https://www.example.com/wp-includes/js/admin-bar.min.js?ver=4.0'></script> <script type='text/javascript' src='https://www.example.com/wp-includes/js/comment-reply.min.js?ver=4.0'></script>
Is there a way to achieve to load in this desired order?
Thank you in advance!
Best Regards.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Re-order the assets load’ is closed to new replies.