Skip to content

Instantly share code, notes, and snippets.

@Benunc
Created June 24, 2022 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Benunc/14d3d0bdbf76718689356c21aa144c5a to your computer and use it in GitHub Desktop.
Save Benunc/14d3d0bdbf76718689356c21aa144c5a to your computer and use it in GitHub Desktop.
<?php
add_action('give_before_main_content', function () {
ob_start();
?>
<div style="text-align: center;">
<h1><?= get_the_title() ?></h1>
</div>
<?php
echo ob_get_clean();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment