How to properly add CSS in WordPress

It is important that the styles should not be added in hard-code way. Right way to include CSS is using the standard functions of WordPress wp_enqueue_style. It is a safe way that will save you from future troubles. Moreover, it is more convenient and makes your code more readable. Using wp_enqueue_style wp_enqueue_style($handle, $src, $deps, $ver, …

How to properly add CSS in WordPress Read More »