Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Created January 22, 2015 16:53
Show Gist options
  • Save Dinamiko/24c0ebf948426f20f945 to your computer and use it in GitHub Desktop.
Save Dinamiko/24c0ebf948426f20f945 to your computer and use it in GitHub Desktop.
adds a text after content in docu-index.php template
function custom_docu_after_index_content() {
echo '<h1>After content</h1>';
}
add_action( 'docu_after_index_content', 'custom_docu_after_index_content' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment