Illuminate \ View \ ViewException (E_ERROR)
Undefined offset: 0 (View: /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/resources/views/single.blade.php)
Previous exceptions
  • Undefined offset: 0 (0)
Illuminate\View\ViewException thrown with message "Undefined offset: 0 (View: /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/resources/views/single.blade.php)" Stacktrace: #14 Illuminate\View\ViewException in /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/storage/framework/views/6b6d728efccb133d666ff007a36c0368c3e10ff0.php:6 #13 Illuminate\View\Engines\CompilerEngine:handleViewException in /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/vendor/illuminate/view/Engines/PhpEngine.php:60 #12 ErrorException in /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/storage/framework/views/6b6d728efccb133d666ff007a36c0368c3e10ff0.php:6 #11 Roots\Acorn\Bootstrap\HandleExceptions:handleError in /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/storage/framework/views/6b6d728efccb133d666ff007a36c0368c3e10ff0.php:6 #10 require in /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/vendor/illuminate/filesystem/Filesystem.php:107 #9 Illuminate\Filesystem\Filesystem:Illuminate\Filesystem\{closure} in /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/vendor/illuminate/filesystem/Filesystem.php:108 #8 Illuminate\Filesystem\Filesystem:getRequire in /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/vendor/illuminate/view/Engines/PhpEngine.php:58 #7 Illuminate\View\Engines\PhpEngine:evaluatePath in /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/vendor/illuminate/view/Engines/CompilerEngine.php:61 #6 Illuminate\View\Engines\CompilerEngine:get in /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/vendor/illuminate/view/View.php:139 #5 Illuminate\View\View:getContents in /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/vendor/illuminate/view/View.php:122 #4 Illuminate\View\View:renderContents in /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/vendor/illuminate/view/View.php:91 #3 Illuminate\View\View:render in /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/index.php:2 #2 include in /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/wp/wp-includes/template-loader.php:106 #1 require_once in /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/wp/wp-blog-header.php:19 #0 require in /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/index.php:6
14
Illuminate\View\ViewException
/storage/framework/views/6b6d728efccb133d666ff007a36c0368c3e10ff0.php6
13
Illuminate\View\Engines\CompilerEngine handleViewException
/vendor/illuminate/view/Engines/PhpEngine.php60
12
ErrorException
/storage/framework/views/6b6d728efccb133d666ff007a36c0368c3e10ff0.php6
11
Roots\Acorn\Bootstrap\HandleExceptions handleError
/storage/framework/views/6b6d728efccb133d666ff007a36c0368c3e10ff0.php6
10
require
/vendor/illuminate/filesystem/Filesystem.php107
9
Illuminate\Filesystem\Filesystem Illuminate\Filesystem\{closure}
/vendor/illuminate/filesystem/Filesystem.php108
8
Illuminate\Filesystem\Filesystem getRequire
/vendor/illuminate/view/Engines/PhpEngine.php58
7
Illuminate\View\Engines\PhpEngine evaluatePath
/vendor/illuminate/view/Engines/CompilerEngine.php61
6
Illuminate\View\Engines\CompilerEngine get
/vendor/illuminate/view/View.php139
5
Illuminate\View\View getContents
/vendor/illuminate/view/View.php122
4
Illuminate\View\View renderContents
/vendor/illuminate/view/View.php91
3
Illuminate\View\View render
/index.php2
2
include
/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/wp/wp-includes/template-loader.php106
1
require_once
/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/wp/wp-blog-header.php19
0
require
/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/index.php6
/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/storage/framework/views/6b6d728efccb133d666ff007a36c0368c3e10ff0.php
<?php $__env->startSection('content'); ?>
    <?php while(have_posts()): ?> <?php (the_post()); ?>
    <?php
    $id = get_the_ID();
    $cats = get_the_category($id);
    $name = $cats[0]->name;
    $categories = get_categories();
    ?>
    <div class="container">
        <h1>News & Resources</h1>
        <div class="blog-post">
            <div class="blog-post__content">
                <div class="blog-post__category <?php echo e($name == 'Regulatory Update' ? 'blog-post__category__regulatory' : ''); ?>">
                    <a href="/category/<?php echo e($cats[0]->slug); ?>"><?php echo e($name); ?></a>
                </div>
                <div class="blog-post__date"><?php echo e(get_the_date()); ?></div>
                <div class="blog-post__excerpt">
                    <?php echo get_the_content(); ?>
 
                </div>
                <?php if( get_previous_post_link() ): ?>
                    <div class="blog-post__button">
                        <?php echo get_previous_post_link('%link', 'Previous', true); ?>
 
                    </div>
                <?php endif; ?>
                <?php if( get_next_post_link() ): ?>
                    <div class="blog-post__button">
                        <?php echo get_next_post_link('%link', 'Next', true); ?>
 
                    </div>
                <?php endif; ?>
            </div>
        </div>
    </div>
    <?php endwhile; ?>
<?php $__env->stopSection(); ?>
 
<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/resources/views/single.blade.php ENDPATH**/ ?>
Arguments
  1. "Undefined offset: 0 (View: /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/resources/views/single.blade.php)"
    
/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/vendor/illuminate/view/Engines/PhpEngine.php
    /**
     * Get the evaluated contents of the view at the given path.
     *
     * @param  string  $path
     * @param  array  $data
     * @return string
     */
    protected function evaluatePath($path, $data)
    {
        $obLevel = ob_get_level();
 
        ob_start();
 
        // We'll evaluate the contents of the view inside a try/catch block so we can
        // flush out any stray output that might get out before an error occurs or
        // an exception is thrown. This prevents any partial views from leaking.
        try {
            $this->files->getRequire($path, $data);
        } catch (Throwable $e) {
            $this->handleViewException($e, $obLevel);
        }
 
        return ltrim(ob_get_clean());
    }
 
    /**
     * Handle a view exception.
     *
     * @param  \Throwable  $e
     * @param  int  $obLevel
     * @return void
     *
     * @throws \Throwable
     */
    protected function handleViewException(Throwable $e, $obLevel)
    {
        while (ob_get_level() > $obLevel) {
            ob_end_clean();
        }
 
Arguments
  1. ErrorException {#2511
      #message: "Undefined offset: 0"
      #code: 0
      #file: "/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/storage/framework/views/6b6d728efccb133d666ff007a36c0368c3e10ff0.php"
      #line: 6
      #severity: E_NOTICE
    }
    
  2. 0
    
/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/storage/framework/views/6b6d728efccb133d666ff007a36c0368c3e10ff0.php
<?php $__env->startSection('content'); ?>
    <?php while(have_posts()): ?> <?php (the_post()); ?>
    <?php
    $id = get_the_ID();
    $cats = get_the_category($id);
    $name = $cats[0]->name;
    $categories = get_categories();
    ?>
    <div class="container">
        <h1>News & Resources</h1>
        <div class="blog-post">
            <div class="blog-post__content">
                <div class="blog-post__category <?php echo e($name == 'Regulatory Update' ? 'blog-post__category__regulatory' : ''); ?>">
                    <a href="/category/<?php echo e($cats[0]->slug); ?>"><?php echo e($name); ?></a>
                </div>
                <div class="blog-post__date"><?php echo e(get_the_date()); ?></div>
                <div class="blog-post__excerpt">
                    <?php echo get_the_content(); ?>
 
                </div>
                <?php if( get_previous_post_link() ): ?>
                    <div class="blog-post__button">
                        <?php echo get_previous_post_link('%link', 'Previous', true); ?>
 
                    </div>
                <?php endif; ?>
                <?php if( get_next_post_link() ): ?>
                    <div class="blog-post__button">
                        <?php echo get_next_post_link('%link', 'Next', true); ?>
 
                    </div>
                <?php endif; ?>
            </div>
        </div>
    </div>
    <?php endwhile; ?>
<?php $__env->stopSection(); ?>
 
<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/resources/views/single.blade.php ENDPATH**/ ?>
Arguments
  1. "Undefined offset: 0"
    
Exception message: Undefined offset: 0
/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/storage/framework/views/6b6d728efccb133d666ff007a36c0368c3e10ff0.php
<?php $__env->startSection('content'); ?>
    <?php while(have_posts()): ?> <?php (the_post()); ?>
    <?php
    $id = get_the_ID();
    $cats = get_the_category($id);
    $name = $cats[0]->name;
    $categories = get_categories();
    ?>
    <div class="container">
        <h1>News & Resources</h1>
        <div class="blog-post">
            <div class="blog-post__content">
                <div class="blog-post__category <?php echo e($name == 'Regulatory Update' ? 'blog-post__category__regulatory' : ''); ?>">
                    <a href="/category/<?php echo e($cats[0]->slug); ?>"><?php echo e($name); ?></a>
                </div>
                <div class="blog-post__date"><?php echo e(get_the_date()); ?></div>
                <div class="blog-post__excerpt">
                    <?php echo get_the_content(); ?>
 
                </div>
                <?php if( get_previous_post_link() ): ?>
                    <div class="blog-post__button">
                        <?php echo get_previous_post_link('%link', 'Previous', true); ?>
 
                    </div>
                <?php endif; ?>
                <?php if( get_next_post_link() ): ?>
                    <div class="blog-post__button">
                        <?php echo get_next_post_link('%link', 'Next', true); ?>
 
                    </div>
                <?php endif; ?>
            </div>
        </div>
    </div>
    <?php endwhile; ?>
<?php $__env->stopSection(); ?>
 
<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/resources/views/single.blade.php ENDPATH**/ ?>
Arguments
  1. 8
    
  2. "Undefined offset: 0"
    
  3. "/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/storage/framework/views/6b6d728efccb133d666ff007a36c0368c3e10ff0.php"
    
  4. 6
    
  5. array:6 [
      "__path" => "/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/storage/framework/views/6b6d728efccb133d666ff007a36c0368c3e10ff0.php"
      "__data" => array:2 [
        "__env" => Illuminate\View\Factory {#1405}
        "app" => Roots\Acorn\Application {#1339}
      ]
      "__env" => Illuminate\View\Factory {#1405}
      "app" => Roots\Acorn\Application {#1339}
      "id" => 719
      "cats" => []
    ]
    
/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/vendor/illuminate/filesystem/Filesystem.php
 
    /**
     * Get the returned value of a file.
     *
     * @param  string  $path
     * @param  array  $data
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
     */
    public function getRequire($path, array $data = [])
    {
        if ($this->isFile($path)) {
            $__path = $path;
            $__data = $data;
 
            return (static function () use ($__path, $__data) {
                extract($__data, EXTR_SKIP);
 
                return require $__path;
            })();
        }
 
        throw new FileNotFoundException("File does not exist at path {$path}.");
    }
 
    /**
     * Require the given file once.
     *
     * @param  string  $path
     * @param  array  $data
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
     */
    public function requireOnce($path, array $data = [])
    {
        if ($this->isFile($path)) {
            $__path = $path;
            $__data = $data;
Arguments
  1. "/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/storage/framework/views/6b6d728efccb133d666ff007a36c0368c3e10ff0.php"
    
/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/vendor/illuminate/filesystem/Filesystem.php
    /**
     * Get the returned value of a file.
     *
     * @param  string  $path
     * @param  array  $data
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
     */
    public function getRequire($path, array $data = [])
    {
        if ($this->isFile($path)) {
            $__path = $path;
            $__data = $data;
 
            return (static function () use ($__path, $__data) {
                extract($__data, EXTR_SKIP);
 
                return require $__path;
            })();
        }
 
        throw new FileNotFoundException("File does not exist at path {$path}.");
    }
 
    /**
     * Require the given file once.
     *
     * @param  string  $path
     * @param  array  $data
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
     */
    public function requireOnce($path, array $data = [])
    {
        if ($this->isFile($path)) {
            $__path = $path;
            $__data = $data;
 
/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/vendor/illuminate/view/Engines/PhpEngine.php
    }
 
    /**
     * Get the evaluated contents of the view at the given path.
     *
     * @param  string  $path
     * @param  array  $data
     * @return string
     */
    protected function evaluatePath($path, $data)
    {
        $obLevel = ob_get_level();
 
        ob_start();
 
        // We'll evaluate the contents of the view inside a try/catch block so we can
        // flush out any stray output that might get out before an error occurs or
        // an exception is thrown. This prevents any partial views from leaking.
        try {
            $this->files->getRequire($path, $data);
        } catch (Throwable $e) {
            $this->handleViewException($e, $obLevel);
        }
 
        return ltrim(ob_get_clean());
    }
 
    /**
     * Handle a view exception.
     *
     * @param  \Throwable  $e
     * @param  int  $obLevel
     * @return void
     *
     * @throws \Throwable
     */
    protected function handleViewException(Throwable $e, $obLevel)
    {
        while (ob_get_level() > $obLevel) {
            ob_end_clean();
Arguments
  1. "/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/storage/framework/views/6b6d728efccb133d666ff007a36c0368c3e10ff0.php"
    
  2. array:2 [
      "__env" => Illuminate\View\Factory {#1405}
      "app" => Roots\Acorn\Application {#1339}
    ]
    
/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/vendor/illuminate/view/Engines/CompilerEngine.php
     *
     * @param  string  $path
     * @param  array  $data
     * @return string
     */
    public function get($path, array $data = [])
    {
        $this->lastCompiled[] = $path;
 
        // If this given view has expired, which means it has simply been edited since
        // it was last compiled, we will re-compile the views so we can evaluate a
        // fresh copy of the view. We'll pass the compiler the path of the view.
        if ($this->compiler->isExpired($path)) {
            $this->compiler->compile($path);
        }
 
        // Once we have the path to the compiled file, we will evaluate the paths with
        // typical PHP just like any other templates. We also keep a stack of views
        // which have been rendered for right exception messages to be generated.
        $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
 
        array_pop($this->lastCompiled);
 
        return $results;
    }
 
    /**
     * Handle a view exception.
     *
     * @param  \Throwable  $e
     * @param  int  $obLevel
     * @return void
     *
     * @throws \Throwable
     */
    protected function handleViewException(Throwable $e, $obLevel)
    {
        $e = new ViewException($this->getMessage($e), 0, 1, $e->getFile(), $e->getLine(), $e);
 
        parent::handleViewException($e, $obLevel);
Arguments
  1. "/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/storage/framework/views/6b6d728efccb133d666ff007a36c0368c3e10ff0.php"
    
  2. array:2 [
      "__env" => Illuminate\View\Factory {#1405}
      "app" => Roots\Acorn\Application {#1339}
    ]
    
/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/vendor/illuminate/view/View.php
        $this->factory->callComposer($this);
 
        $contents = $this->getContents();
 
        // Once we've finished rendering the view, we'll decrement the render count
        // so that each sections get flushed out next time a view is created and
        // no old sections are staying around in the memory of an environment.
        $this->factory->decrementRender();
 
        return $contents;
    }
 
    /**
     * Get the evaluated contents of the view.
     *
     * @return string
     */
    protected function getContents()
    {
        return $this->engine->get($this->path, $this->gatherData());
    }
 
    /**
     * Get the data bound to the view instance.
     *
     * @return array
     */
    public function gatherData()
    {
        $data = array_merge($this->factory->getShared(), $this->data);
 
        foreach ($data as $key => $value) {
            if ($value instanceof Renderable) {
                $data[$key] = $value->render();
            }
        }
 
        return $data;
    }
 
Arguments
  1. "/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/resources/views/single.blade.php"
    
  2. array:2 [
      "__env" => Illuminate\View\Factory {#1405}
      "app" => Roots\Acorn\Application {#1339}
    ]
    
/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/vendor/illuminate/view/View.php
 
            throw $e;
        }
    }
 
    /**
     * Get the contents of the view instance.
     *
     * @return string
     */
    protected function renderContents()
    {
        // We will keep track of the amount of views being rendered so we can flush
        // the section after the complete rendering operation is done. This will
        // clear out the sections for any separate views that may be rendered.
        $this->factory->incrementRender();
 
        $this->factory->callComposer($this);
 
        $contents = $this->getContents();
 
        // Once we've finished rendering the view, we'll decrement the render count
        // so that each sections get flushed out next time a view is created and
        // no old sections are staying around in the memory of an environment.
        $this->factory->decrementRender();
 
        return $contents;
    }
 
    /**
     * Get the evaluated contents of the view.
     *
     * @return string
     */
    protected function getContents()
    {
        return $this->engine->get($this->path, $this->gatherData());
    }
 
    /**
/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/vendor/illuminate/view/View.php
        $this->view = $view;
        $this->path = $path;
        $this->engine = $engine;
        $this->factory = $factory;
 
        $this->data = $data instanceof Arrayable ? $data->toArray() : (array) $data;
    }
 
    /**
     * Get the string contents of the view.
     *
     * @param  callable|null  $callback
     * @return string
     *
     * @throws \Throwable
     */
    public function render(callable $callback = null)
    {
        try {
            $contents = $this->renderContents();
 
            $response = isset($callback) ? $callback($this, $contents) : null;
 
            // Once we have the contents of the view, we will flush the sections if we are
            // done rendering all views so that there is nothing left hanging over when
            // another view gets rendered in the future by the application developer.
            $this->factory->flushStateIfDoneRendering();
 
            return ! is_null($response) ? $response : $contents;
        } catch (Throwable $e) {
            $this->factory->flushState();
 
            throw $e;
        }
    }
 
    /**
     * Get the contents of the view instance.
     *
     * @return string
/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/index.php
 
  <?php echo \Roots\view(\Roots\app('sage.view'), \Roots\app('sage.data'))->render(); ?>
 
 
/home/customer/www/bluetractorgroup.com/releases/20230428150114/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. "/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/app/themes/sage/index.php"
    
/home/customer/www/bluetractorgroup.com/releases/20230428150114/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. "/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/wp/wp-includes/template-loader.php"
    
/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/index.php
<?php
/**
 * WordPress View Bootstrapper
 */
define('WP_USE_THEMES', true);
require __DIR__ . '/wp/wp-blog-header.php';
 
Arguments
  1. "/home/customer/www/bluetractorgroup.com/releases/20230428150114/web/wp/wp-blog-header.php"
    

Environment & details:

Key Value
query_vars
array:4 [
  "page" => ""
  "testimonial" => "state-street-global-services"
  "post_type" => "testimonial"
  "name" => "state-street-global-services"
]
query_string
"testimonial=state-street-global-services&post_type=testimonial&name=state-street-global-services"
request
"testimonial/state-street-global-services"
matched_rule
"testimonial/([^/]+)(?:/([0-9]+))?/?$"
matched_query
"testimonial=state-street-global-services&page="
did_permalink
true
Key Value
query
array:4 [
  "page" => ""
  "testimonial" => "state-street-global-services"
  "post_type" => "testimonial"
  "name" => "state-street-global-services"
]
query_vars
array:68 [
  "page" => 0
  "testimonial" => "state-street-global-services"
  "post_type" => "testimonial"
  "name" => "state-street-global-services"
  "error" => ""
  "m" => ""
  "p" => 0
  "post_parent" => ""
  "subpost" => ""
  "subpost_id" => ""
  "attachment" => ""
  "attachment_id" => 0
  "pagename" => ""
  "page_id" => 0
  "second" => ""
  "minute" => ""
  "hour" => ""
  "day" => 0
  "monthnum" => 0
  "year" => 0
  "w" => 0
  "category_name" => ""
  "tag" => ""
  "cat" => ""
  "tag_id" => ""
  "author" => ""
  "author_name" => ""
  "feed" => ""
  "tb" => ""
  "paged" => 0
  "meta_key" => ""
  "meta_value" => ""
  "preview" => ""
  "s" => ""
  "sentence" => ""
  "title" => ""
  "fields" => ""
  "menu_order" => ""
  "embed" => ""
  "category__in" => []
  "category__not_in" => []
  "category__and" => []
  "post__in" => []
  "post__not_in" => []
  "post_name__in" => []
  "tag__in" => []
  "tag__not_in" => []
  "tag__and" => []
  "tag_slug__in" => []
  "tag_slug__and" => []
  "post_parent__in" => []
  "post_parent__not_in" => []
  "author__in" => []
  "author__not_in" => []
  "search_columns" => []
  "orderby" => "menu_order"
  "order" => "ASC"
  "ignore_sticky_posts" => false
  "suppress_filters" => false
  "cache_results" => true
  "update_post_term_cache" => true
  "update_menu_item_cache" => false
  "lazy_load_term_meta" => true
  "update_post_meta_cache" => true
  "posts_per_page" => 10
  "nopaging" => false
  "comments_per_page" => "50"
  "no_found_rows" => false
]
meta_query
WP_Meta_Query {#2400}
queried_object
WP_Post {#2408}
queried_object_id
719
request
"""
\n
\t\t\tSELECT   wp_posts.*\n
\t\t\tFROM wp_posts \n
\t\t\tWHERE 1=1  AND wp_posts.post_name = 'state-street-global-services' AND wp_posts.post_type = 'testimonial'\n
\t\t\t\n
\t\t\tORDER BY wp_posts.menu_order ASC\n
\t\t\t\n
\t\t
"""
post_count
1
in_the_loop
true
current_comment
-1
found_posts
1
is_single
true
is_singular
true
Key Value
ID
719
post_author
"3"
post_date
"2022-02-11 16:01:48"
post_date_gmt
"2022-02-11 16:01:48"
post_content
""
post_title
"State Street Global Services"
post_excerpt
""
post_status
"publish"
comment_status
"closed"
ping_status
"closed"
post_password
""
post_name
"state-street-global-services"
to_ping
""
pinged
""
post_modified
"2022-02-28 10:28:38"
post_modified_gmt
"2022-02-28 10:28:38"
post_content_filtered
""
post_parent
0
guid
"https://bluetractor.stealthmedia.com/?post_type=testimonial&#038;p=719"
menu_order
1
post_type
"testimonial"
post_mime_type
""
comment_count
"0"
filter
"raw"
empty
empty
empty
empty
empty
Key Value
SERVER_SOFTWARE
"Apache"
REQUEST_URI
"/testimonial/state-street-global-services/"
REDIRECT_HTTPS
"on"
REDIRECT_UNIQUE_ID
"ZHqLfIe-kyqK_BaEclM34AAAAAA"
REDIRECT_HTTP_AUTHORIZATION
""
REDIRECT_STATUS
"200"
HTTPS
"on"
UNIQUE_ID
"ZHqLfIe-kyqK_BaEclM34AAAAAA"
HTTP_AUTHORIZATION
""
HTTP_X_PORT
"53880"
HTTP_X_REAL_IP
"44.200.145.223"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_HOST
"bluetractorgroup.com"
HTTP_IF_MODIFIED_SINCE
"Thu, 02 Feb 2023 14:01:13 GMT"
HTTP_X_ACCEPT_ENCODING
"br,gzip"
HTTP_CONNECTION
"close"
HTTP_USER_AGENT
"CCBot/2.0 (https://commoncrawl.org/faq/)"
HTTP_ACCEPT
"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
HTTP_ACCEPT_LANGUAGE
"en-US,en;q=0.5"
PATH
"/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin"
SERVER_SIGNATURE
""
SERVER_NAME
"bluetractorgroup.com"
SERVER_ADDR
"35.193.135.27"
SERVER_PORT
"443"
REMOTE_ADDR
"44.200.145.223"
DOCUMENT_ROOT
"/home/customer/www/bluetractorgroup.com/public_html"
REQUEST_SCHEME
"https"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/home/customer/www/bluetractorgroup.com/public_html"
SERVER_ADMIN
"[no address given]"
SCRIPT_FILENAME
"/home/customer/www/bluetractorgroup.com/public_html/index.php"
REMOTE_PORT
"12136"
REDIRECT_URL
"/testimonial/state-street-global-services/"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.0"
REQUEST_METHOD
"GET"
QUERY_STRING
""
SCRIPT_NAME
"/index.php"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1685752700.6616
REQUEST_TIME
1685752700
DB_NAME
"dbterqpi614lyb"
DB_USER
"ubngehrciyoti"
DB_PASSWORD
"************"
DB_HOST
"localhost"
DB_PREFIX
"wp_"
WP_ENV
"development"
WP_HOME
"http://bluetractorgroup.com"
WP_SITEURL
"http://bluetractorgroup.com/wp"
WP_DEBUG_LOG
"/path/to/debug.log"
AUTH_KEY
"****************************************************************"
SECURE_AUTH_KEY
"****************************************************************"
LOGGED_IN_KEY
"*"
NONCE_KEY
"****************************************************************"
AUTH_SALT
"****************************************************************"
SECURE_AUTH_SALT
"****************************************************************"
LOGGED_IN_SALT
"***********************************************"
NONCE_SALT
"****************************************************************"
Key Value
DB_NAME
"dbterqpi614lyb"
DB_USER
"ubngehrciyoti"
DB_PASSWORD
"************"
DB_HOST
"localhost"
DB_PREFIX
"wp_"
WP_ENV
"development"
WP_HOME
"http://bluetractorgroup.com"
WP_SITEURL
"http://bluetractorgroup.com/wp"
WP_DEBUG_LOG
"/path/to/debug.log"
AUTH_KEY
"****************************************************************"
SECURE_AUTH_KEY
"****************************************************************"
LOGGED_IN_KEY
"*"
NONCE_KEY
"****************************************************************"
AUTH_SALT
"****************************************************************"
SECURE_AUTH_SALT
"****************************************************************"
LOGGED_IN_SALT
"***********************************************"
NONCE_SALT
"****************************************************************"
0. Whoops\Handler\PrettyPageHandler