Answers for "code snippet for header footer in wordpress"

0

code snippet for header footer in wordpress

add_action( 'wp_footer', function () { ?>

	<!-- footer code goes here -->

<?php } );
Posted by: Guest on June-02-2021
0

code snippet for header footer in wordpress

add_action( 'wp_head', function () { ?>

	<!-- header code goes here -->

<?php } );
Posted by: Guest on June-02-2021

Browse Popular Code Answers by Language