Bird
0
0

Which of these is the correct way to include a CSS file in a WordPress theme?

easy📝 Syntax Q3 of 15
Wordpress - Themes and Appearance
Which of these is the correct way to include a CSS file in a WordPress theme?
AUsing wp_enqueue_style() in functions.php
BAdding a <style> tag directly in header.php
CLinking CSS in the wp-config.php file
DPlacing CSS files in the uploads folder
Step-by-Step Solution
Solution:
  1. Step 1: Identify the WordPress standard for adding CSS

    wp_enqueue_style() is the proper function to add CSS files safely in themes.
  2. Step 2: Understand why other methods are incorrect

    Direct