Form

Introduction

Will give you the ability to create forms for your blog such as a contact form.
All form html tags are supported
as well as some 'composite' fields ...

To activate this add-on, go to Plugins > installed and activate MailPress_form.

Admin pages

In this add-on, there are three different admin pages added :

Configuring

Shortcode

Including in a page or a post the following shortcode

[mailpress_form id='xx']

will replace the shortcode by the corresponding (xx) form.

Code

Including in the code the following code

<?php 
    $shortcode = "mailpress_form id='xx'"
    $shortcode_result = do_shortcode($shortcode);
    if (!empty($shortcode_result)) echo $shortcode_result;
?>

will replace the code by the corresponding (xx) form.

Api