What priority should I give add_action('wp_enqueue_scripts', 'plugin_scripts');
?
Should my plugin scripts and styles load after the theme? Since I don’t know what the theme’s priority for scripts and styles is, should I arbitrarily select a large number?
In my testing, if I load a stylesheet in both a custom plugin and a custom theme, and don’t define a priority for either, the theme seems to take priority and enqueue after the plugin.