// Add this to plugin file or theme template
do_action( 'bena_custom_hook' ); //This will echo 'This is a custom hook'
//Register the hook in theme functions.php or plugin file
add_action('bena_custom_hook','bena_custom_hook');
function bena_custom_hook() {
echo 'This is a custom hook';
}