What is wp_head() in WordPress?
It is a type of action hook where the code is dynamically added to a theme in between head tag.
BY Best Interview Question ON 23 Jul 2019
Example
<head>
<?php wp_head(); ?>
</head>
It is a type of action hook where the code is dynamically added to a theme in between head tag.
<head>
<?php wp_head(); ?>
</head>