You appear to be a bot. Output may be restricted
Description
Display the required contact form
Usage
oiku_display_contact_form( $atts, $user );
Parameters
- $atts
- ( mixed ) required –
- $user
- ( mixed ) optional –
Returns
voidSource
File name: oik-user/shortcodes/oik-contact-user.phpLines:
1 to 9 of 9
function oiku_display_contact_form( $atts, $user=null ) { $funcname = bw_funcname( "_oiku_display_contact_form", $atts["form"] ); $form = $funcname( $atts, $user ); bw_push(); $form = apply_filters( 'the_content', $form ); bw_pop(); e( $form ); }View on GitHub