Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // =============================================================================
- // FUNCTIONS.PHP
- // -----------------------------------------------------------------------------
- // Overwrite or add your own custom functions to X in this file.
- // =============================================================================
- // =============================================================================
- // TABLE OF CONTENTS
- // -----------------------------------------------------------------------------
- // 01. Enqueue Parent Stylesheet
- // 02. Additional Functions
- // =============================================================================
- // Enqueue Parent Stylesheet
- // =============================================================================
- add_filter( 'x_enqueue_parent_stylesheet', '__return_true' );
- // Additional Functions
- // =============================================================================
- add_action('wp_head', 'wpb_add_googleanalytics');
- function wpb_add_googleanalytics() { ?>
- <!-- Global site tag (gtag.js) - Google Analytics -->
- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-140725938-1"></script>
- <script>
- window.dataLayer = window.dataLayer || [];
- function gtag(){dataLayer.push(arguments);}
- gtag('js', new Date());
- gtag('config', 'UA-140725938-1');
- </script>
- <?php }
- add_action( 'wp_head', 'x_insert_header_scripts' );
- function x_insert_header_scripts(){
- ?>
- <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.css" />
- <script src="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.js"></script>
- <script>
- window.addEventListener("load", function(){
- window.cookieconsent.initialise({
- "palette": {
- "popup": {
- "background": "#efefef",
- "text": "#404040"
- },
- "button": {
- "background": "#8ec760",
- "text": "#ffffff"
- }
- }
- })});
- </script>
- <?php
- }
Advertisement
Add Comment
Please, Sign In to add comment