# userswp/1.0.21/includes/helpers/notices.php

UsersWP – Front-end login form, User Registration, User Profile &amp; Members Directory plugin for WP, version 1.0.21. 12 lines.

- Page: https://pluginprobe.com/plugins/userswp/1.0.21/code/includes/helpers/notices.php
- Raw: https://pluginprobe.com/plugins/userswp/1.0.21/raw/includes/helpers/notices.php
- Modified: 2017-09-19T13:57:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/userswp/1.0.21/code/includes/helpers/notices.php#L10-L20`.

```php
<?php
/**
 * Wrap notice with a div.
 *
 * @since       1.0.0
 * @package     userswp
 * @return      string      Html string.
 */
function uwp_wrap_notice($message, $type) {
    $notice = new UsersWP_Notices();
    return $notice->wrap_notice($message, $type);
}
```
