1.

What is wp_head() in WordPress?

Answer»

It is a type of action hook where the CODE is DYNAMICALLY ADDED to a THEME in between HEAD tag.

Example

<head>  
    <?php wp_head(); ?>
</head>



Discussion

No Comment Found