# Filters

### Exclude pages - `core_framework_exclude_pages`

This filter enables you to prevent the loading of the Core Framework stylesheet on front-end pages. Here's how to use it:

<pre class="language-php" data-full-width="false"><code class="lang-php"><strong>add_filter('core_framework_exclude_pages', function($pages) {
</strong>    $pages[] = 3; // post id
    $pages[] = "privacy-policy"; // page slugs 
    return $pages;
});
</code></pre>
