Created
January 22, 2015 16:53
-
-
Save Dinamiko/24c0ebf948426f20f945 to your computer and use it in GitHub Desktop.
adds a text after content in docu-index.php template
This file contains 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 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