Created
December 23, 2022 11:43
-
-
Save maagmirror/022187fcd40753c0eaec6fffd319ec2a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function start_modify_html() { | |
ob_start(); | |
} | |
function end_modify_html() { | |
if(!is_user_logged_in()) { | |
$html = ob_get_clean(); | |
$html = str_replace( '[paisname]', get_field('paisname', 'option'), $html ); | |
echo $html; | |
} | |
} | |
add_action( 'wp_head', 'start_modify_html' ); | |
add_action( 'wp_footer', 'end_modify_html' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment