### [wpforms_form_pages_content_after](https://wpforms.com/developers/wpforms_form_pages_content_after/)

**Published:** June 11, 2021
**Author:** David Ozokoye

**Excerpt:** The wpforms_form_pages_content_after  action fires after a form is displayed on the site’s frontend, only if the form exists and contains fields, and was created with the <strong>Form Pages</strong> addon.


**Content:**

## Description

The `wpforms_form_pages_content_after` action fires after a form is displayed on the site’s frontend, and the form was created with the Form Pages addon.

## Parameters

This action does not accept any parameters.

## More Information

The action only fires for valid non-empty forms, it executes after the output rendering process for forms created with the [Form Pages addon](https://wpforms.com/docs/how-to-install-and-use-the-form-pages-addon/ "Form Pages Addon").

An alternate action to consider is `wpforms_form_pages_content_before`, as it functions similarly, except only fires before the form is displayed.

## Source

`wpforms-form-pages/templates/single-form.php`

## Examples

You could use this action to display a video, more content, or a link after the Form Pages form.

```

/**
 * Output something after your Form Pages form(s).
 * 
 * @link  https://wpforms.com/developers/wpforms_frontend_output_after/
 */
function wpf_dev_form_pages_content_after( ) {
      
    // Run code.
    echo '';

}
add_action( 'wpforms_form_pages_content_after', 'wpf_dev_form_pages_content_after' );
```

![You can display anything after the Form Pages form using the wpforms_form_pages_content_after action](https://wpforms.com/wp-content/uploads/2021/06/wpforms-after-form-pages.jpg)

**Categories:** Actions Hooks

**Tags:** PHP

---

