/ Published in: PHP
3rd argument of 'add_action' function is priority, by default set to 10. This is a much simpler way of reorder posts exactly as you want them to appear.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
add_action( 'hook_name', 'callback_name', 100 ); OR add_filter( 'hook_name', 'callback_name', 100 );
URL: http://wordpress.org/support/topic/how-to-change-plugins-load-order#post-1564605