ben-g
9/6/2017 - 4:49 PM

ACF php for loading custom js and php to the page.

<!-- place in footer -->
<!-- custom_js -->
		<?php if ( get_field('custom_js') ): ?>
		<script><?php the_field('custom_js'); ?></script>
		<?php endif; ?>
<!-- custom_css -->
		<?php if (get_field('custom_css')): ?>
			<style><?php the_field('custom_css'); ?></style>
		<?php endif; ?>