So I am super new in wordpress theme development, and in web development overall and is trying to understand the WP ecosystem. Any help will be much appreciated
while going through few WP tutorials, I found out there are multiple ways to include style.css files in wordpress. Namely,
<?php bloginfo('stylesheet_url'); ?>
<?php echo get_stylesheet_uri(); ?>
<?php echo get_template_directory_uri(); ?>/style.css
The top 3 lines of code can be added in header.php
Apart from that we can also use the function- wp_enqueue_style()
My question is, what is the correct way to include style.css in a wordpress templete..