Wordpress - Themes and AppearanceWhich of these is the correct way to include a CSS file in a WordPress theme?AUsing wp_enqueue_style() in functions.phpBAdding a <style> tag directly in header.phpCLinking CSS in the wp-config.php fileDPlacing CSS files in the uploads folderCheck Answer
Step-by-Step SolutionSolution:Step 1: Identify the WordPress standard for adding CSSwp_enqueue_style() is the proper function to add CSS files safely in themes.Step 2: Understand why other methods are incorrectDirect