> For the complete documentation index, see [llms.txt](https://docs.hivepress.io/developer-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hivepress.io/developer-docs/framework/components/helper.md).

# Helper

This component acts as a proxy for all the HivePress helper functions defined in the `includes/helpers.php` file. With the **Helper** component, you can call a helper function anywhere in the code without declaring the PHP namespace. For example, the code below calls the `sanitize_html` helper that removes malicious HTML tags.

```php
hivepress()->helper->sanitize_html( 'custom HTML content' );
```
