ErrorException (E_DEPRECATED)
urlencode(): Passing null to parameter #1 ($string) of type string is deprecated ErrorException thrown with message "urlencode(): Passing null to parameter #1 ($string) of type string is deprecated" Stacktrace: #18 ErrorException in /www/pyroguard_917/public/web/app/plugins/wp-seo-multilingual/classes/class-wpml-wpseo-filters.php:131 #17 urlencode in /www/pyroguard_917/public/web/app/plugins/wp-seo-multilingual/classes/class-wpml-wpseo-filters.php:131 #16 WPML_WPSEO_Filters:opengraph_url_filter in /www/pyroguard_917/public/web/wp/wp-includes/class-wp-hook.php:326 #15 WP_Hook:apply_filters in /www/pyroguard_917/public/web/wp/wp-includes/plugin.php:205 #14 apply_filters in /www/pyroguard_917/public/web/app/plugins/wordpress-seo/src/presenters/open-graph/url-presenter.php:46 #13 Yoast\WP\SEO\Presenters\Open_Graph\Url_Presenter:get in /www/pyroguard_917/public/web/app/plugins/wordpress-seo/src/presenters/abstract-indexable-tag-presenter.php:37 #12 Yoast\WP\SEO\Presenters\Abstract_Indexable_Tag_Presenter:present in /www/pyroguard_917/public/web/app/plugins/wordpress-seo/src/integrations/front-end-integration.php:406 #11 Yoast\WP\SEO\Integrations\Front_End_Integration:present_head in /www/pyroguard_917/public/web/wp/wp-includes/class-wp-hook.php:324 #10 WP_Hook:apply_filters in /www/pyroguard_917/public/web/wp/wp-includes/class-wp-hook.php:348 #9 WP_Hook:do_action in /www/pyroguard_917/public/web/wp/wp-includes/plugin.php:517 #8 do_action in /www/pyroguard_917/public/web/app/plugins/wordpress-seo/src/integrations/front-end-integration.php:377 #7 Yoast\WP\SEO\Integrations\Front_End_Integration:call_wpseo_head in /www/pyroguard_917/public/web/wp/wp-includes/class-wp-hook.php:324 #6 WP_Hook:apply_filters in /www/pyroguard_917/public/web/wp/wp-includes/class-wp-hook.php:348 #5 WP_Hook:do_action in /www/pyroguard_917/public/web/wp/wp-includes/plugin.php:517 #4 do_action in /www/pyroguard_917/public/web/wp/wp-includes/general-template.php:3050 #3 wp_head in /www/pyroguard_917/public/web/app/themes/harriscreativeboilerplate/index.php:21 #2 include in /www/pyroguard_917/public/web/wp/wp-includes/template-loader.php:106 #1 require_once in /www/pyroguard_917/public/web/wp/wp-blog-header.php:19 #0 require in /www/pyroguard_917/public/web/index.php:6
18
ErrorException
/www/pyroguard_917/public/web/app/plugins/wp-seo-multilingual/classes/class-wpml-wpseo-filters.php131
17
urlencode
/www/pyroguard_917/public/web/app/plugins/wp-seo-multilingual/classes/class-wpml-wpseo-filters.php131
16
WPML_WPSEO_Filters opengraph_url_filter
/www/pyroguard_917/public/web/wp/wp-includes/class-wp-hook.php326
15
WP_Hook apply_filters
/www/pyroguard_917/public/web/wp/wp-includes/plugin.php205
14
apply_filters
/www/pyroguard_917/public/web/app/plugins/wordpress-seo/src/presenters/open-graph/url-presenter.php46
13
Yoast\WP\SEO\Presenters\Open_Graph\Url_Presenter get
/www/pyroguard_917/public/web/app/plugins/wordpress-seo/src/presenters/abstract-indexable-tag-presenter.php37
12
Yoast\WP\SEO\Presenters\Abstract_Indexable_Tag_Presenter present
/www/pyroguard_917/public/web/app/plugins/wordpress-seo/src/integrations/front-end-integration.php406
11
Yoast\WP\SEO\Integrations\Front_End_Integration present_head
/www/pyroguard_917/public/web/wp/wp-includes/class-wp-hook.php324
10
WP_Hook apply_filters
/www/pyroguard_917/public/web/wp/wp-includes/class-wp-hook.php348
9
WP_Hook do_action
/www/pyroguard_917/public/web/wp/wp-includes/plugin.php517
8
do_action
/www/pyroguard_917/public/web/app/plugins/wordpress-seo/src/integrations/front-end-integration.php377
7
Yoast\WP\SEO\Integrations\Front_End_Integration call_wpseo_head
/www/pyroguard_917/public/web/wp/wp-includes/class-wp-hook.php324
6
WP_Hook apply_filters
/www/pyroguard_917/public/web/wp/wp-includes/class-wp-hook.php348
5
WP_Hook do_action
/www/pyroguard_917/public/web/wp/wp-includes/plugin.php517
4
do_action
/www/pyroguard_917/public/web/wp/wp-includes/general-template.php3050
3
wp_head
/index.php21
2
include
/www/pyroguard_917/public/web/wp/wp-includes/template-loader.php106
1
require_once
/www/pyroguard_917/public/web/wp/wp-blog-header.php19
0
require
/www/pyroguard_917/public/web/index.php6
/www/pyroguard_917/public/web/app/plugins/wp-seo-multilingual/classes/class-wpml-wpseo-filters.php
     * @param string $link Link to a prev/next page in archive.
     *
     * @return string
     */
    public function rel_link_filter( $link ) {
        if ( preg_match( '/href="([^"]+)"/', $link, $matches ) ) {
            $canonical_url = $this->canonicals->get_general_canonical_url( $matches[1] );
            $link          = str_replace( $matches[1], $canonical_url, $link );
        }
 
        return $link;
    }
 
    /**
     * @param string $url
     *
     * @return string
     */
    public function opengraph_url_filter( $url ) {
        return urlencode( $url );
    }
}
 
Arguments
  1. "urlencode(): Passing null to parameter #1 ($string) of type string is deprecated"
    
/www/pyroguard_917/public/web/app/plugins/wp-seo-multilingual/classes/class-wpml-wpseo-filters.php
     * @param string $link Link to a prev/next page in archive.
     *
     * @return string
     */
    public function rel_link_filter( $link ) {
        if ( preg_match( '/href="([^"]+)"/', $link, $matches ) ) {
            $canonical_url = $this->canonicals->get_general_canonical_url( $matches[1] );
            $link          = str_replace( $matches[1], $canonical_url, $link );
        }
 
        return $link;
    }
 
    /**
     * @param string $url
     *
     * @return string
     */
    public function opengraph_url_filter( $url ) {
        return urlencode( $url );
    }
}
 
Arguments
  1. null
    
/www/pyroguard_917/public/web/wp/wp-includes/class-wp-hook.php
 
        $num_args = count( $args );
 
        do {
            $this->current_priority[ $nesting_level ] = current( $this->iterations[ $nesting_level ] );
 
            $priority = $this->current_priority[ $nesting_level ];
 
            foreach ( $this->callbacks[ $priority ] as $the_ ) {
                if ( ! $this->doing_action ) {
                    $args[0] = $value;
                }
 
                // Avoid the array_slice() if possible.
                if ( 0 === $the_['accepted_args'] ) {
                    $value = call_user_func( $the_['function'] );
                } elseif ( $the_['accepted_args'] >= $num_args ) {
                    $value = call_user_func_array( $the_['function'], $args );
                } else {
                    $value = call_user_func_array( $the_['function'], array_slice( $args, 0, $the_['accepted_args'] ) );
                }
            }
        } while ( false !== next( $this->iterations[ $nesting_level ] ) );
 
        unset( $this->iterations[ $nesting_level ] );
        unset( $this->current_priority[ $nesting_level ] );
 
        --$this->nesting_level;
 
        return $value;
    }
 
    /**
     * Calls the callback functions that have been added to an action hook.
     *
     * @since 4.7.0
     *
     * @param array $args Parameters to pass to the callback functions.
     */
    public function do_action( $args ) {
Arguments
  1. null
    
/www/pyroguard_917/public/web/wp/wp-includes/plugin.php
        $all_args = func_get_args(); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection
        _wp_call_all_hook( $all_args );
    }
 
    if ( ! isset( $wp_filter[ $hook_name ] ) ) {
        if ( isset( $wp_filter['all'] ) ) {
            array_pop( $wp_current_filter );
        }
 
        return $value;
    }
 
    if ( ! isset( $wp_filter['all'] ) ) {
        $wp_current_filter[] = $hook_name;
    }
 
    // Pass the value to WP_Hook.
    array_unshift( $args, $value );
 
    $filtered = $wp_filter[ $hook_name ]->apply_filters( $value, $args );
 
    array_pop( $wp_current_filter );
 
    return $filtered;
}
 
/**
 * Calls the callback functions that have been added to a filter hook, specifying arguments in an array.
 *
 * @since 3.0.0
 *
 * @see apply_filters() This function is identical, but the arguments passed to the
 *                      functions hooked to `$hook_name` are supplied using an array.
 *
 * @global WP_Hook[] $wp_filter         Stores all of the filters and actions.
 * @global int[]     $wp_filters        Stores the number of times each filter was triggered.
 * @global string[]  $wp_current_filter Stores the list of current filters with the current one last.
 *
 * @param string $hook_name The name of the filter hook.
 * @param array  $args      The arguments supplied to the functions hooked to `$hook_name`.
Arguments
  1. null
    
  2. array:2 [
      0 => null
      1 => Yoast\WP\SEO\Presentations\Indexable_Author_Archive_Presentation {#4415}
    ]
    
/www/pyroguard_917/public/web/app/plugins/wordpress-seo/src/presenters/open-graph/url-presenter.php
    /**
     * The method of escaping to use.
     *
     * @var string
     */
    protected $escaping = 'attribute';
 
    /**
     * Run the url content through the `wpseo_opengraph_url` filter.
     *
     * @return string The filtered url.
     */
    public function get() {
        /**
         * Filter: 'wpseo_opengraph_url' - Allow changing the Yoast SEO generated open graph URL.
         *
         * @param string                 $url          The open graph URL.
         * @param Indexable_Presentation $presentation The presentation of an indexable.
         */
        return \urldecode( (string) \apply_filters( 'wpseo_opengraph_url', $this->presentation->open_graph_url, $this->presentation ) );
    }
}
 
Arguments
  1. "wpseo_opengraph_url"
    
  2. null
    
  3. Yoast\WP\SEO\Presentations\Indexable_Author_Archive_Presentation {#4415}
    
/www/pyroguard_917/public/web/app/plugins/wordpress-seo/src/presenters/abstract-indexable-tag-presenter.php
     * The tag format including placeholders.
     *
     * @var string
     */
    protected $tag_format = self::DEFAULT_TAG_FORMAT;
 
    /**
     * The method of escaping to use.
     *
     * @var string
     */
    protected $escaping = 'attribute';
 
    /**
     * Returns a tag in the head.
     *
     * @return string The tag.
     */
    public function present() {
        $value = $this->get();
 
        if ( ! \is_string( $value ) || $value === '' ) {
            return '';
        }
 
        /**
         * There may be some classes that are derived from this class that do not use the $key property
         * in their $tag_format string. In that case the key property will simply not be used.
         */
        return \sprintf(
            $this->tag_format,
            $this->escape_value( $value ),
            $this->key,
            \is_admin_bar_showing() ? ' class="yoast-seo-meta-tag"' : ''
        );
    }
 
    /**
     * Escaped the output.
     *
/www/pyroguard_917/public/web/app/plugins/wordpress-seo/src/integrations/front-end-integration.php
     */
    public function present_head() {
        $context    = $this->context_memoizer->for_current_page();
        $presenters = $this->get_presenters( $context->page_type, $context );
 
        /**
         * Filter 'wpseo_frontend_presentation' - Allow filtering the presentation used to output our meta values.
         *
         * @param Indexable_Presention $presentation The indexable presentation.
         * @param Meta_Tags_Context    $context      The meta tags context for the current page.
         */
        $presentation = \apply_filters( 'wpseo_frontend_presentation', $context->presentation, $context );
 
        echo \PHP_EOL;
        foreach ( $presenters as $presenter ) {
            $presenter->presentation = $presentation;
            $presenter->helpers      = $this->helpers;
            $presenter->replace_vars = $this->replace_vars;
 
            $output = $presenter->present();
            if ( ! empty( $output ) ) {
                // phpcs:ignore WordPress.Security.EscapeOutput -- Presenters are responsible for correctly escaping their output.
                echo "\t" . $output . \PHP_EOL;
            }
        }
        echo \PHP_EOL . \PHP_EOL;
    }
 
    /**
     * Returns all presenters for this page.
     *
     * @param string                 $page_type The page type.
     * @param Meta_Tags_Context|null $context   The meta tags context for the current page.
     *
     * @return Abstract_Indexable_Presenter[] The presenters.
     */
    public function get_presenters( $page_type, $context = null ) {
        if ( \is_null( $context ) ) {
            $context = $this->context_memoizer->for_current_page();
        }
/www/pyroguard_917/public/web/wp/wp-includes/class-wp-hook.php
 
        $this->iterations[ $nesting_level ] = $this->priorities;
 
        $num_args = count( $args );
 
        do {
            $this->current_priority[ $nesting_level ] = current( $this->iterations[ $nesting_level ] );
 
            $priority = $this->current_priority[ $nesting_level ];
 
            foreach ( $this->callbacks[ $priority ] as $the_ ) {
                if ( ! $this->doing_action ) {
                    $args[0] = $value;
                }
 
                // Avoid the array_slice() if possible.
                if ( 0 === $the_['accepted_args'] ) {
                    $value = call_user_func( $the_['function'] );
                } elseif ( $the_['accepted_args'] >= $num_args ) {
                    $value = call_user_func_array( $the_['function'], $args );
                } else {
                    $value = call_user_func_array( $the_['function'], array_slice( $args, 0, $the_['accepted_args'] ) );
                }
            }
        } while ( false !== next( $this->iterations[ $nesting_level ] ) );
 
        unset( $this->iterations[ $nesting_level ] );
        unset( $this->current_priority[ $nesting_level ] );
 
        --$this->nesting_level;
 
        return $value;
    }
 
    /**
     * Calls the callback functions that have been added to an action hook.
     *
     * @since 4.7.0
     *
     * @param array $args Parameters to pass to the callback functions.
Arguments
  1. ""
    
/www/pyroguard_917/public/web/wp/wp-includes/class-wp-hook.php
        } while ( false !== next( $this->iterations[ $nesting_level ] ) );
 
        unset( $this->iterations[ $nesting_level ] );
        unset( $this->current_priority[ $nesting_level ] );
 
        --$this->nesting_level;
 
        return $value;
    }
 
    /**
     * Calls the callback functions that have been added to an action hook.
     *
     * @since 4.7.0
     *
     * @param array $args Parameters to pass to the callback functions.
     */
    public function do_action( $args ) {
        $this->doing_action = true;
        $this->apply_filters( '', $args );
 
        // If there are recursive calls to the current action, we haven't finished it until we get to the last one.
        if ( ! $this->nesting_level ) {
            $this->doing_action = false;
        }
    }
 
    /**
     * Processes the functions hooked into the 'all' hook.
     *
     * @since 4.7.0
     *
     * @param array $args Arguments to pass to the hook callbacks. Passed by reference.
     */
    public function do_all_hook( &$args ) {
        $nesting_level                      = $this->nesting_level++;
        $this->iterations[ $nesting_level ] = $this->priorities;
 
        do {
            $priority = current( $this->iterations[ $nesting_level ] );
Arguments
  1. ""
    
  2. array:1 [
      0 => ""
    ]
    
/www/pyroguard_917/public/web/wp/wp-includes/plugin.php
    if ( ! isset( $wp_filter[ $hook_name ] ) ) {
        if ( isset( $wp_filter['all'] ) ) {
            array_pop( $wp_current_filter );
        }
 
        return;
    }
 
    if ( ! isset( $wp_filter['all'] ) ) {
        $wp_current_filter[] = $hook_name;
    }
 
    if ( empty( $arg ) ) {
        $arg[] = '';
    } elseif ( is_array( $arg[0] ) && 1 === count( $arg[0] ) && isset( $arg[0][0] ) && is_object( $arg[0][0] ) ) {
        // Backward compatibility for PHP4-style passing of `array( &$this )` as action `$arg`.
        $arg[0] = $arg[0][0];
    }
 
    $wp_filter[ $hook_name ]->do_action( $arg );
 
    array_pop( $wp_current_filter );
}
 
/**
 * Calls the callback functions that have been added to an action hook, specifying arguments in an array.
 *
 * @since 2.1.0
 *
 * @see do_action() This function is identical, but the arguments passed to the
 *                  functions hooked to `$hook_name` are supplied using an array.
 *
 * @global WP_Hook[] $wp_filter         Stores all of the filters and actions.
 * @global int[]     $wp_actions        Stores the number of times each action was triggered.
 * @global string[]  $wp_current_filter Stores the list of current filters with the current one last.
 *
 * @param string $hook_name The name of the action to be executed.
 * @param array  $args      The arguments supplied to the functions hooked to `$hook_name`.
 */
function do_action_ref_array( $hook_name, $args ) {
Arguments
  1. array:1 [
      0 => ""
    ]
    
/www/pyroguard_917/public/web/app/plugins/wordpress-seo/src/integrations/front-end-integration.php
        }
 
        return \array_diff( $presenters, [ 'Yoast\\WP\\SEO\\Presenters\\Robots_Presenter' ] );
    }
 
    /**
     * Presents the head in the front-end. Resets wp_query if it's not the main query.
     *
     * @codeCoverageIgnore It just calls a WordPress function.
     *
     * @return void
     */
    public function call_wpseo_head() {
        global $wp_query;
 
        $old_wp_query = $wp_query;
        // phpcs:ignore WordPress.WP.DiscouragedFunctions.wp_reset_query_wp_reset_query -- Reason: The recommended function, wp_reset_postdata, doesn't reset wp_query.
        \wp_reset_query();
 
        \do_action( 'wpseo_head' );
 
        // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited -- Reason: we have to restore the query.
        $GLOBALS['wp_query'] = $old_wp_query;
    }
 
    /**
     * Echoes all applicable presenters for a page.
     *
     * @return void
     */
    public function present_head() {
        $context    = $this->context_memoizer->for_current_page();
        $presenters = $this->get_presenters( $context->page_type, $context );
 
        /**
         * Filter 'wpseo_frontend_presentation' - Allow filtering the presentation used to output our meta values.
         *
         * @param Indexable_Presention $presentation The indexable presentation.
         * @param Meta_Tags_Context    $context      The meta tags context for the current page.
         */
Arguments
  1. "wpseo_head"
    
/www/pyroguard_917/public/web/wp/wp-includes/class-wp-hook.php
 
        $this->iterations[ $nesting_level ] = $this->priorities;
 
        $num_args = count( $args );
 
        do {
            $this->current_priority[ $nesting_level ] = current( $this->iterations[ $nesting_level ] );
 
            $priority = $this->current_priority[ $nesting_level ];
 
            foreach ( $this->callbacks[ $priority ] as $the_ ) {
                if ( ! $this->doing_action ) {
                    $args[0] = $value;
                }
 
                // Avoid the array_slice() if possible.
                if ( 0 === $the_['accepted_args'] ) {
                    $value = call_user_func( $the_['function'] );
                } elseif ( $the_['accepted_args'] >= $num_args ) {
                    $value = call_user_func_array( $the_['function'], $args );
                } else {
                    $value = call_user_func_array( $the_['function'], array_slice( $args, 0, $the_['accepted_args'] ) );
                }
            }
        } while ( false !== next( $this->iterations[ $nesting_level ] ) );
 
        unset( $this->iterations[ $nesting_level ] );
        unset( $this->current_priority[ $nesting_level ] );
 
        --$this->nesting_level;
 
        return $value;
    }
 
    /**
     * Calls the callback functions that have been added to an action hook.
     *
     * @since 4.7.0
     *
     * @param array $args Parameters to pass to the callback functions.
Arguments
  1. ""
    
/www/pyroguard_917/public/web/wp/wp-includes/class-wp-hook.php
        } while ( false !== next( $this->iterations[ $nesting_level ] ) );
 
        unset( $this->iterations[ $nesting_level ] );
        unset( $this->current_priority[ $nesting_level ] );
 
        --$this->nesting_level;
 
        return $value;
    }
 
    /**
     * Calls the callback functions that have been added to an action hook.
     *
     * @since 4.7.0
     *
     * @param array $args Parameters to pass to the callback functions.
     */
    public function do_action( $args ) {
        $this->doing_action = true;
        $this->apply_filters( '', $args );
 
        // If there are recursive calls to the current action, we haven't finished it until we get to the last one.
        if ( ! $this->nesting_level ) {
            $this->doing_action = false;
        }
    }
 
    /**
     * Processes the functions hooked into the 'all' hook.
     *
     * @since 4.7.0
     *
     * @param array $args Arguments to pass to the hook callbacks. Passed by reference.
     */
    public function do_all_hook( &$args ) {
        $nesting_level                      = $this->nesting_level++;
        $this->iterations[ $nesting_level ] = $this->priorities;
 
        do {
            $priority = current( $this->iterations[ $nesting_level ] );
Arguments
  1. null
    
  2. array:1 [
      0 => ""
    ]
    
/www/pyroguard_917/public/web/wp/wp-includes/plugin.php
    if ( ! isset( $wp_filter[ $hook_name ] ) ) {
        if ( isset( $wp_filter['all'] ) ) {
            array_pop( $wp_current_filter );
        }
 
        return;
    }
 
    if ( ! isset( $wp_filter['all'] ) ) {
        $wp_current_filter[] = $hook_name;
    }
 
    if ( empty( $arg ) ) {
        $arg[] = '';
    } elseif ( is_array( $arg[0] ) && 1 === count( $arg[0] ) && isset( $arg[0][0] ) && is_object( $arg[0][0] ) ) {
        // Backward compatibility for PHP4-style passing of `array( &$this )` as action `$arg`.
        $arg[0] = $arg[0][0];
    }
 
    $wp_filter[ $hook_name ]->do_action( $arg );
 
    array_pop( $wp_current_filter );
}
 
/**
 * Calls the callback functions that have been added to an action hook, specifying arguments in an array.
 *
 * @since 2.1.0
 *
 * @see do_action() This function is identical, but the arguments passed to the
 *                  functions hooked to `$hook_name` are supplied using an array.
 *
 * @global WP_Hook[] $wp_filter         Stores all of the filters and actions.
 * @global int[]     $wp_actions        Stores the number of times each action was triggered.
 * @global string[]  $wp_current_filter Stores the list of current filters with the current one last.
 *
 * @param string $hook_name The name of the action to be executed.
 * @param array  $args      The arguments supplied to the functions hooked to `$hook_name`.
 */
function do_action_ref_array( $hook_name, $args ) {
Arguments
  1. array:1 [
      0 => ""
    ]
    
/www/pyroguard_917/public/web/wp/wp-includes/general-template.php
     * @param string $before           The HTML to output before the date.
     * @param string $after            The HTML to output after the date.
     */
    echo apply_filters( 'the_weekday_date', $the_weekday_date, $before, $after );
}
 
/**
 * Fires the wp_head action.
 *
 * See {@see 'wp_head'}.
 *
 * @since 1.2.0
 */
function wp_head() {
    /**
     * Prints scripts or data in the head tag on the front end.
     *
     * @since 1.5.0
     */
    do_action( 'wp_head' );
}
 
/**
 * Fires the wp_footer action.
 *
 * See {@see 'wp_footer'}.
 *
 * @since 1.5.1
 */
function wp_footer() {
    /**
     * Prints scripts or data before the closing body tag on the front end.
     *
     * @since 1.5.1
     */
    do_action( 'wp_footer' );
}
 
/**
 * Fires the wp_body_open action.
Arguments
  1. "wp_head"
    
/www/pyroguard_917/public/web/app/themes/harriscreativeboilerplate/index.php
<html <?php language_attributes(); ?>>
  <head>
    <!-- Start cookieyes banner --> 
      <script id="cookieyes" type="text/javascript" src="https://cdn-cookieyes.com/client_data/23a9dbbc04eb80ef9b441ba3/script.js"></script> 
    <!-- End cookieyes banner -->
    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta name="google-site-verification" content="48S7cxG_-ILtyj6PyKQ1LJCx6-ImmmwhCuEWMUDy8u8">
    <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
    <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
    <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
    <link rel="manifest" href="/site.webmanifest">
    <link rel="preconnect" href="https://use.typekit.net" crossorigin>
    <link rel="preload" as="style" href="https://use.typekit.net/wmf8mvi.css">
    <link rel="stylesheet" media="print" onload="this.onload=null;this.removeAttribute('media');"  href="https://use.typekit.net/wmf8mvi.css">
    <noscript>
      <link rel="stylesheet" href="https://use.typekit.net/wmf8mvi.css">
    </noscript>
    <?php wp_head(); ?>
    <!-- Google Tag Manager -->
    <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
          new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
        j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
        'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
      })(window,document,'script','dataLayer','GTM-W6W8BP');</script>
    <!-- End Google Tag Manager -->
  </head>
 
  <body <?php body_class(); ?>>
 
  <!-- Google Tag Manager (noscript) -->
  <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-W6W8BP"
                    height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  <!-- End Google Tag Manager (noscript) -->
 
    <?php wp_body_open(); ?>
    <?php do_action('get_header'); ?>
 
    <div id="app">
/www/pyroguard_917/public/web/wp/wp-includes/template-loader.php
            }
 
            break;
        }
    }
 
    if ( ! $template ) {
        $template = get_index_template();
    }
 
    /**
     * Filters the path of the current template before including it.
     *
     * @since 3.0.0
     *
     * @param string $template The path of the template to include.
     */
    $template = apply_filters( 'template_include', $template );
    if ( $template ) {
        include $template;
    } elseif ( current_user_can( 'switch_themes' ) ) {
        $theme = wp_get_theme();
        if ( $theme->errors() ) {
            wp_die( $theme->errors() );
        }
    }
    return;
}
 
Arguments
  1. "/www/pyroguard_917/public/web/app/themes/harriscreativeboilerplate/index.php"
    
/www/pyroguard_917/public/web/wp/wp-blog-header.php
<?php
/**
 * Loads the WordPress environment and template.
 *
 * @package WordPress
 */
 
if ( ! isset( $wp_did_header ) ) {
 
    $wp_did_header = true;
 
    // Load the WordPress library.
    require_once __DIR__ . '/wp-load.php';
 
    // Set up the WordPress query.
    wp();
 
    // Load the theme template.
    require_once ABSPATH . WPINC . '/template-loader.php';
 
}
 
Arguments
  1. "/www/pyroguard_917/public/web/wp/wp-includes/template-loader.php"
    
/www/pyroguard_917/public/web/index.php
<?php
/**
 * WordPress View Bootstrapper
 */
define('WP_USE_THEMES', true);
require __DIR__ . '/wp/wp-blog-header.php';
 
Arguments
  1. "/www/pyroguard_917/public/web/wp/wp-blog-header.php"
    

Environment & details:

empty
empty
empty
Key Value
__cf_bm
"YFwlzsHZPlteUsS550iGm9yNXWOtSrql698DB60iWFo-1765703650-1.0.1.1-qisSjgHfnGkQrHTWxRLcgESJGj5cg4m5atx00N5KIrRJxYLjYAgNv21STKcgjShIHR0IroUyrkS16qb1qHWDw6Wr_FZhOYYdlmMrOGQiaZw"
wp-wpml_current_language
"en"
empty
Key Value
SERVER_SOFTWARE
"nginx/1.29.2"
REQUEST_URI
"/author/m4badmin/"
MAGICK_TEMPORARY_PATH
"/www/pyroguard_917/tmp"
USER
"pyroguard"
HOME
"/www/pyroguard_917"
HTTP_COOKIE
"__cf_bm=YFwlzsHZPlteUsS550iGm9yNXWOtSrql698DB60iWFo-1765703650-1.0.1.1-qisSjgHfnGkQrHTWxRLcgESJGj5cg4m5atx00N5KIrRJxYLjYAgNv21STKcgjShIHR0IroUyrkS16qb1qHWDw6Wr_FZhOYYdlmMrOGQiaZw"
HTTP_CF_DEVICE_TYPE
"desktop"
HTTP_CF_CONNECTING_IP
"216.73.216.137"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_REFERER
"https://www.pyroguard.eu/author/m4badmin"
HTTP_ACCEPT
"*/*"
HTTP_CDN_LOOP
"cloudflare; loops=1; subreqs=1"
HTTP_CF_EW_VIA
"15"
HTTP_X_FORWARDED_FOR
"216.73.216.137"
HTTP_X_KINSTA_EDGE_LB
"KCW"
HTTP_KI_REALIP
"216.73.216.137"
HTTP_CF_WORKER
"kinsta.cloud"
HTTP_KI_BOT_CATEGORY
"aggressive_crawler"
HTTP_KI_REQUEST_COLO
"1042"
HTTP_CF_VISITOR
"{\"scheme\":\"https\"}"
HTTP_KI_REQUEST_METAL
"10"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_CF_IPCOUNTRY
"US"
HTTP_ACCEPT_ENCODING
"gzip, br"
HTTP_KI_UA_LOWERCASED
"mozilla/5.0 applewebkit/537.36 (khtml, like gecko; compatible; claudebot/1.0; +claudebot@anthropic.com)"
HTTP_X_KINSTA_EDGE_INCOMINGIP
"216.73.216.137"
HTTP_X_USE_CUSTOM_EC_TTL
"true"
HTTP_CF_RAY
"9adc96e84534f8bb-LHR"
SCRIPT_FILENAME
"/www/pyroguard_917/public/web/index.php"
REDIRECT_STATUS
"200"
WP_ENVIRONMENT_TYPE
"production"
KINSTA_CACHE_ZONE
"KINSTAWP"
SERVER_NAME
"pyroguard.eu"
SERVER_PORT
"443"
SERVER_ADDR
"10.0.12.198"
REMOTE_PORT
""
REMOTE_ADDR
"216.73.216.137"
GATEWAY_INTERFACE
"CGI/1.1"
HTTP_HOST
"www.pyroguard.eu"
HTTPS
"on"
SERVER_PROTOCOL
"HTTP/2.0"
DOCUMENT_ROOT
"/www/pyroguard_917/public/web"
DOCUMENT_URI
"/index.php"
SCRIPT_NAME
"/index.php"
CONTENT_LENGTH
""
CONTENT_TYPE
""
REQUEST_METHOD
"GET"
QUERY_STRING
""
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1765703650.6674
REQUEST_TIME
1765703650
DB_NAME
"pyroguard"
DB_USER
"pyroguard"
DB_PASSWORD
"***************"
DB_PREFIX
"wp_"
WP_ENV
"development"
WP_HOME
"https://www.pyroguard.eu"
WP_SITEURL
"https://www.pyroguard.eu/wp/"
WP_DEBUG_LOG
"/www/pyroguard_917/public/web/app/themes/harriscreativeboilerplate/storage/logs"
WP_DEBUG
"true"
AUTH_KEY
"****************************************************************"
SECURE_AUTH_KEY
"****************************************************************"
LOGGED_IN_KEY
"****************************************************************"
NONCE_KEY
"****************************************************************"
AUTH_SALT
"****************************************************************"
SECURE_AUTH_SALT
"****************************************************************"
LOGGED_IN_SALT
"****************************************************************"
NONCE_SALT
"****************************************************************"
WPML_USER_ID
"rossl-3"
WPML_KEY
"nFJCuAyZLy"
Key Value
DB_NAME
"pyroguard"
DB_USER
"pyroguard"
DB_PASSWORD
"***************"
DB_PREFIX
"wp_"
WP_ENV
"development"
WP_HOME
"https://www.pyroguard.eu"
WP_SITEURL
"https://www.pyroguard.eu/wp/"
WP_DEBUG_LOG
"/www/pyroguard_917/public/web/app/themes/harriscreativeboilerplate/storage/logs"
WP_DEBUG
"true"
AUTH_KEY
"****************************************************************"
SECURE_AUTH_KEY
"****************************************************************"
LOGGED_IN_KEY
"****************************************************************"
NONCE_KEY
"****************************************************************"
AUTH_SALT
"****************************************************************"
SECURE_AUTH_SALT
"****************************************************************"
LOGGED_IN_SALT
"****************************************************************"
NONCE_SALT
"****************************************************************"
WPML_USER_ID
"rossl-3"
WPML_KEY
"nFJCuAyZLy"
0. Whoops\Handler\PrettyPageHandler