'; echo do_shortcode( mfn_opts_get( 'hook-top' ) ); echo ''; } } add_action( 'mfn_hook_top', 'mfn_hook_top' ); /* --------------------------------------------------------------------------- * Hook | Content before * --------------------------------------------------------------------------- */ if( ! function_exists( 'mfn_hook_content_before' ) ) { function mfn_hook_content_before() { echo ''; echo do_shortcode( mfn_opts_get( 'hook-content-before' ) ); echo ''; } } add_action( 'mfn_hook_content_before', 'mfn_hook_content_before' ); /* --------------------------------------------------------------------------- * Hook | Content after * --------------------------------------------------------------------------- */ if( ! function_exists( 'mfn_hook_content_after' ) ) { function mfn_hook_content_after() { echo ''; echo do_shortcode( mfn_opts_get( 'hook-content-after' ) ); echo ''; } } add_action( 'mfn_hook_content_after', 'mfn_hook_content_after' ); /* --------------------------------------------------------------------------- * Hook | Bottom * --------------------------------------------------------------------------- */ if( ! function_exists( 'mfn_hook_bottom' ) ) { function mfn_hook_bottom() { echo ''; echo do_shortcode( mfn_opts_get( 'hook-bottom' ) ); echo ''; } } add_action( 'mfn_hook_bottom', 'mfn_hook_bottom' );