code snippet for header footer in wordpress code example
Example 1: code snippet for header footer in wordpress
add_action( 'wp_footer', function () { ?>
<!-- footer code goes here -->
<?php } );
Example 2: code snippet for header footer in wordpress
add_action( 'wp_head', function () { ?>
<!-- header code goes here -->
<?php } );