# boxzilla/3.2/src/default-filters.php

Boxzilla – WordPress Popup Builder, version 3.2. 10 lines.

- Page: https://pluginprobe.com/plugins/boxzilla/3.2/code/src/default-filters.php
- Raw: https://pluginprobe.com/plugins/boxzilla/3.2/raw/src/default-filters.php
- Modified: 2016-05-11T11:35:30+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/boxzilla/3.2/code/src/default-filters.php#L10-L20`.

```php
<?php

defined( 'ABSPATH' ) or exit;

add_filter( 'boxzilla_box_content', 'wptexturize') ;
add_filter( 'boxzilla_box_content', 'convert_smilies' );
add_filter( 'boxzilla_box_content', 'convert_chars' );
add_filter( 'boxzilla_box_content', 'wpautop' );
add_filter( 'boxzilla_box_content', 'shortcode_unautop' );
add_filter( 'boxzilla_box_content', 'do_shortcode', 11 );
```
