Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save maagmirror/022187fcd40753c0eaec6fffd319ec2a to your computer and use it in GitHub Desktop.
Save maagmirror/022187fcd40753c0eaec6fffd319ec2a to your computer and use it in GitHub Desktop.
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