How can I load child theme stylesheet with cache busting string and remove same stylesheet loaded by parent theme?
You have to do: function remove_repeated_style(){ wp_dequeue_style(‘twentysixteen-style’); } add_action( ‘wp_enqueue_scripts’, ‘remove_repeated_style’, 11 ); The 11 is important.