Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Last active August 29, 2015 14:13
Show Gist options
  • Save Dinamiko/76f511efd44ab565d191 to your computer and use it in GitHub Desktop.
Save Dinamiko/76f511efd44ab565d191 to your computer and use it in GitHub Desktop.
adds a text before docu sidebar widget
function custom_docu_before_sidebar_widget() {
echo '<h3>Before Docu Sidebar Widget</h3>';
}
add_action( 'docu_before_sidebar_widget', 'custom_docu_before_sidebar_widget' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment