How to add tags (like GTM) in WordPress?

We don’t need to add another plugin for that.
Simply add this code to your plugin or function file:

<?php
// add tags into <head>
add_action( 'wp_head', 'wpster_add_tags_head_js', 11 );
function wpster_add_tags_head_js() {
	?>
	<!-- your code here -->
	<?php
}

// add tags into <body>
add_action( 'wp_footer', 'wpster_add_tags_body_js', 11 );
function wpster_add_tags_body_js() {
	?>
	<!-- your code here -->
	<?php
}
?>

Submit a Comment

Your email address will not be published. Required fields are marked *