mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
c4b6484438
- small changes and fixes;
27 lines
493 B
PHP
27 lines
493 B
PHP
<div class="um <?php echo $this->get_class( $mode ); ?> um-<?php echo esc_attr( $form_id ); ?>">
|
|
|
|
<div class="um-form">
|
|
|
|
<form method="post" action="">
|
|
|
|
<?php
|
|
|
|
do_action("um_before_form", $args);
|
|
|
|
do_action("um_before_{$mode}_fields", $args);
|
|
|
|
do_action("um_main_{$mode}_fields", $args);
|
|
|
|
do_action("um_after_form_fields", $args);
|
|
|
|
do_action("um_after_{$mode}_fields", $args);
|
|
|
|
do_action("um_after_form", $args);
|
|
|
|
?>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|