Instead of Custom CSS Theme CSS is loading
It is not clear if you want to just override the styles or replace the file with a new one. Whatever the case is, below code will help. Just wait for the best answer to your question. add_action( ‘wp_enqueue_scripts’, ‘add_my_style_css_also’, 99 ); function add_my_style_css_also() { wp_enqueue_style( ‘my-styles-css’, get_stylesheet_directory_uri() . ‘/style123.css’ ); } The code will … Read more