Add custom code to your site without modifying theme files.
Add custom code to your site's header, body open, and footer without modifying theme files.
| Location | Hook | Priority | Use Cases |
|---|---|---|---|
| Header | wp_head | 20 | Meta tags, analytics, CSS |
| Body Open | wp_body_open | 20 | Tag Manager, no-script fallbacks |
| Footer | wp_footer | 20 | Tracking pixels, chat widgets, deferred JS |
Built-in GA4 support with just a Measurement ID. Simply enter your G-XXXXXXXXXX ID and the tracking code is automatically added.
Snippets are NOT output in:
is_admin())is_feed())REST_REQUEST)add_filter( 'functionalities_snippets_output_enabled', function( $enabled ) {
if ( is_page( 'landing-page' ) ) {
return false;
}
return $enabled;
});