Call to undefined function Sernapesca\Widgets\get_field() (View: /app/web/app/themes/sernapesca/resources/views/partials/content-page.blade.php) (View: /app/web/app/themes/sernapesca/resources/views/partials/content-page.blade.php) (500 Internal Server Error)

Symfony Exception

Error ViewException ViewException

HTTP 500 Internal Server Error

Call to undefined function Sernapesca\Widgets\get_field() (View: /app/web/app/themes/sernapesca/resources/views/partials/content-page.blade.php) (View: /app/web/app/themes/sernapesca/resources/views/partials/content-page.blade.php)

Exceptions 3

Illuminate\View\ ViewException

Show exception properties
Illuminate\View\ViewException {#2155
  #severity: E_ERROR
}
  1.             $results = [];
  2.     
  3.             while ($the_query->have_posts()) {
  4.                 $the_query->the_post();
  5.     
  6.                 $filename get_field('file-1_filename');
  7.                 $file_url wp_get_attachment_url(get_field('file-1_file'));
  8.     
  9.                 $results[] = [
  10.                     'title'    => get_the_title(),
  11.                     'sector'   => strip_tags(get_the_term_list(get_the_ID(), 'categorias_resultados'''', ')),
in /app/vendor/illuminate/view/Engines/PhpEngine.php -> handleViewException (line 60)
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
in /app/vendor/illuminate/view/View.php -> getContents (line 178)
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
in /app/vendor/illuminate/view/View.php -> renderContents (line 147)
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
View->render() in /app/web/app/themes/sernapesca/index.php (line 17)
  1.   <body <?php body_class(); ?>>
  2.     <?php wp_body_open(); ?>
  3.     <?php do_action('get_header'); ?>
  4.     <div id="app">
  5.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  6.     </div>
  7.     <?php do_action('get_footer'); ?>
  8.     <?php wp_footer(); ?>
  9. <script src="https://apps.sae1.pure.cloud/widgets/9.0/cxbus.min.js"
include('/app/web/app/themes/sernapesca/index.php') in /app/web/wp/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/app/web/wp/wp-includes/template-loader.php') in /app/web/wp/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/app/web/wp/wp-blog-header.php') in /app/web/index.php (line 6)
  1. <?php
  2. /**
  3.  * WordPress View Bootstrapper
  4.  */
  5. define('WP_USE_THEMES'true);
  6. require __DIR__ '/wp/wp-blog-header.php';

Illuminate\View\ ViewException

Call to undefined function Sernapesca\Widgets\get_field() (View: /app/web/app/themes/sernapesca/resources/views/partials/content-page.blade.php)

  1.             $results = [];
  2.     
  3.             while ($the_query->have_posts()) {
  4.                 $the_query->the_post();
  5.     
  6.                 $filename get_field('file-1_filename');
  7.                 $file_url wp_get_attachment_url(get_field('file-1_file'));
  8.     
  9.                 $results[] = [
  10.                     'title'    => get_the_title(),
  11.                     'sector'   => strip_tags(get_the_term_list(get_the_ID(), 'categorias_resultados'''', ')),
in /app/vendor/illuminate/view/Engines/PhpEngine.php -> handleViewException (line 60)
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
in /app/vendor/illuminate/view/View.php -> getContents (line 178)
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
in /app/vendor/illuminate/view/View.php -> renderContents (line 147)
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <div class="container">
  2.   <?php while(have_posts()): ?> <?php (the_post()); ?>
  3.   <?php echo $__env->make('partials.page-header'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  4.   
  5.   <?php echo $__env->first(['partials.content-page''partials.content'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  6.   <?php endwhile; ?>
  7. </div>
  8. <?php $__env->stopSection(); ?>
  9. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /app/web/app/themes/sernapesca/resources/views/page.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
in /app/vendor/illuminate/filesystem/Filesystem.php :: Illuminate\Filesystem\{closure} (line 110)
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
in /app/vendor/illuminate/view/View.php -> getContents (line 178)
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
in /app/vendor/illuminate/view/View.php -> renderContents (line 147)
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
View->render() in /app/web/app/themes/sernapesca/index.php (line 17)
  1.   <body <?php body_class(); ?>>
  2.     <?php wp_body_open(); ?>
  3.     <?php do_action('get_header'); ?>
  4.     <div id="app">
  5.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  6.     </div>
  7.     <?php do_action('get_footer'); ?>
  8.     <?php wp_footer(); ?>
  9. <script src="https://apps.sae1.pure.cloud/widgets/9.0/cxbus.min.js"
include('/app/web/app/themes/sernapesca/index.php') in /app/web/wp/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/app/web/wp/wp-includes/template-loader.php') in /app/web/wp/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/app/web/wp/wp-blog-header.php') in /app/web/index.php (line 6)
  1. <?php
  2. /**
  3.  * WordPress View Bootstrapper
  4.  */
  5. define('WP_USE_THEMES'true);
  6. require __DIR__ '/wp/wp-blog-header.php';

Error

Call to undefined function Sernapesca\Widgets\get_field()

  1.             $results = [];
  2.     
  3.             while ($the_query->have_posts()) {
  4.                 $the_query->the_post();
  5.     
  6.                 $filename get_field('file-1_filename');
  7.                 $file_url wp_get_attachment_url(get_field('file-1_file'));
  8.     
  9.                 $results[] = [
  10.                     'title'    => get_the_title(),
  11.                     'sector'   => strip_tags(get_the_term_list(get_the_ID(), 'categorias_resultados'''', ')),
TabsListInformes->render_tab_content('46') in /app/web/app/themes/sernapesca/inc/elementor/tabs_listado_informes.php (line 260)
  1.                     <?php
  2.                     foreach ( $settings['tabs'] as $index => $tab ) {
  3.                         $tab_count $index 1;
  4.                         ?>
  5.                         <div class="tab-pane fade show <?php echo ( $index == 'active' '' ); ?>" id="tab-content-<?php echo $tab_count?>" role="tabpanel" aria-labelledby="tab-<?php echo $tab_count?>">
  6.                             <?php self::render_tab_content($tab['category']) ?>
  7.                         </div>
  8.                     <?php ?>
  9.                 </div>
  10.             </div>
  11.             <link rel="stylesheet" href="https://cdn.datatables.net/1.13.7/css/jquery.dataTables.css" />
  1.             $this->render_static();
  2.             return;
  3.         }
  4.         $this->render();
  5.     }
  6.     /**
  7.      * Print content template.
  8.      *
Controls_Stack->render_by_mode() in /app/web/app/plugins/elementor/includes/base/widget-base.php (line 636)
  1.         $skin $this->get_current_skin();
  2.         if ( $skin ) {
  3.             $skin->set_parent$this );
  4.             $skin->render_by_mode();
  5.         } else {
  6.             $this->render_by_mode();
  7.         }
  8.         $widget_content ob_get_clean();
  9.         if ( empty( $widget_content ) ) {
Widget_Base->render_content() in /app/web/app/plugins/elementor/includes/base/widget-base.php (line 774)
  1.      *
  2.      * @since 1.0.0
  3.      * @access protected
  4.      */
  5.     protected function print_content() {
  6.         $this->render_content();
  7.     }
  8.     /**
  9.      * Print a setting content without escaping.
  10.      *
Widget_Base->print_content() in /app/web/app/plugins/elementor/includes/base/element-base.php (line 492)
  1.         if ( $this->has_own_method'_print_content'self::class ) ) {
  2.             Plugin::$instance->modules_manager->get_modules'dev-tools' )->deprecation->deprecated_function'_print_content''3.1.0'__CLASS__ '::print_content()' );
  3.             $this->_print_content();
  4.         } else {
  5.             $this->print_content();
  6.         }
  7.         $content ob_get_clean();
  8.         $should_render = ( ! empty( $content ) || $this->should_print_empty() );
  1.             ob_start();
  2.             $element Plugin::$instance->elements_manager->create_element_instance$widget_data );
  3.             if ( $element ) {
  4.                 $element->print_element();
  5.             }
  6.             return ob_get_clean();
  7.         } );
  8.     }
Module->Elementor\Modules\ElementCache\{closure}(array('k' => '950752978d980af0e29fe159f8354682', 'data' => 'eyJpZCI6IjgyZDdhODkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0YWJzIjpbeyJfaWQiOiIyNjYyZjE5IiwidGFiX3RpdGxlIjoiU2FuaXRhcmlvcyIsImNhdGVnb3J5IjoiNDYifSx7Il9pZCI6IjU5OGYyMWYiLCJ0YWJfdGl0bGUiOiJBbWJpZW50YWxlcyIsImNhdGVnb3J5IjoiNTgifSx7Il9pZCI6ImMzZjNmMzciLCJ0YWJfdGl0bGUiOiJQZXNxdWVyb3MiLCJjYXRlZ29yeSI6IjU5In0seyJfaWQiOiJkZTA1MzQ4IiwidGFiX3RpdGxlIjoiSW5zdGl0dWNpb25hbGVzIiwiY2F0ZWdvcnkiOiI2MCJ9LHsiX2lkIjoiYjZjMGQ3NSIsInRhYl90aXRsZSI6Iklub2N1aWRhZCB5IENlcnRpZmljYWNpXHUwMGYzbiIsImNhdGVnb3J5IjoiNjEifV19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0YWJzLWxpc3QtaW5mb3JtZXMifQ=='), '', 'elementor-element') in /app/web/wp/wp-includes/shortcodes.php (line 434)
  1.         return $return;
  2.     }
  3.     $content = isset( $m[5] ) ? $m[5] : null;
  4.     $output $m[1] . call_user_func$shortcode_tags$tag ], $attr$content$tag ) . $m[6];
  5.     /**
  6.      * Filters the output created by a shortcode callback.
  7.      *
  8.      * @since 4.7.0
do_shortcode_tag(array('[elementor-element k="950752978d980af0e29fe159f8354682" data="eyJpZCI6IjgyZDdhODkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0YWJzIjpbeyJfaWQiOiIyNjYyZjE5IiwidGFiX3RpdGxlIjoiU2FuaXRhcmlvcyIsImNhdGVnb3J5IjoiNDYifSx7Il9pZCI6IjU5OGYyMWYiLCJ0YWJfdGl0bGUiOiJBbWJpZW50YWxlcyIsImNhdGVnb3J5IjoiNTgifSx7Il9pZCI6ImMzZjNmMzciLCJ0YWJfdGl0bGUiOiJQZXNxdWVyb3MiLCJjYXRlZ29yeSI6IjU5In0seyJfaWQiOiJkZTA1MzQ4IiwidGFiX3RpdGxlIjoiSW5zdGl0dWNpb25hbGVzIiwiY2F0ZWdvcnkiOiI2MCJ9LHsiX2lkIjoiYjZjMGQ3NSIsInRhYl90aXRsZSI6Iklub2N1aWRhZCB5IENlcnRpZmljYWNpXHUwMGYzbiIsImNhdGVnb3J5IjoiNjEifV19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0YWJzLWxpc3QtaW5mb3JtZXMifQ=="]', '', 'elementor-element', ' k="950752978d980af0e29fe159f8354682" data="eyJpZCI6IjgyZDdhODkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0YWJzIjpbeyJfaWQiOiIyNjYyZjE5IiwidGFiX3RpdGxlIjoiU2FuaXRhcmlvcyIsImNhdGVnb3J5IjoiNDYifSx7Il9pZCI6IjU5OGYyMWYiLCJ0YWJfdGl0bGUiOiJBbWJpZW50YWxlcyIsImNhdGVnb3J5IjoiNTgifSx7Il9pZCI6ImMzZjNmMzciLCJ0YWJfdGl0bGUiOiJQZXNxdWVyb3MiLCJjYXRlZ29yeSI6IjU5In0seyJfaWQiOiJkZTA1MzQ4IiwidGFiX3RpdGxlIjoiSW5zdGl0dWNpb25hbGVzIiwiY2F0ZWdvcnkiOiI2MCJ9LHsiX2lkIjoiYjZjMGQ3NSIsInRhYl90aXRsZSI6Iklub2N1aWRhZCB5IENlcnRpZmljYWNpXHUwMGYzbiIsImNhdGVnb3J5IjoiNjEifV19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0YWJzLWxpc3QtaW5mb3JtZXMifQ=="', '', '', ''))
preg_replace_callback('/\\[(\\[?)(elementor\\-element)(?![\\w-])([^\\]\\/]*(?:\\/(?!\\])[^\\]\\/]*)*?)(?:(\\/)\\]|\\](?:([^\\[]*+(?:\\[(?!\\/\\2\\])[^\\[]*+)*+)\\[\\/\\2\\])?)(\\]?)/', 'do_shortcode_tag', ' <section class="elementor-section elementor-top-section elementor-element elementor-element-a8e1ac1 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="a8e1ac1" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a2c483a" data-id="a2c483a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> [elementor-element k="950752978d980af0e29fe159f8354682" data="eyJpZCI6IjgyZDdhODkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0YWJzIjpbeyJfaWQiOiIyNjYyZjE5IiwidGFiX3RpdGxlIjoiU2FuaXRhcmlvcyIsImNhdGVnb3J5IjoiNDYifSx7Il9pZCI6IjU5OGYyMWYiLCJ0YWJfdGl0bGUiOiJBbWJpZW50YWxlcyIsImNhdGVnb3J5IjoiNTgifSx7Il9pZCI6ImMzZjNmMzciLCJ0YWJfdGl0bGUiOiJQZXNxdWVyb3MiLCJjYXRlZ29yeSI6IjU5In0seyJfaWQiOiJkZTA1MzQ4IiwidGFiX3RpdGxlIjoiSW5zdGl0dWNpb25hbGVzIiwiY2F0ZWdvcnkiOiI2MCJ9LHsiX2lkIjoiYjZjMGQ3NSIsInRhYl90aXRsZSI6Iklub2N1aWRhZCB5IENlcnRpZmljYWNpXHUwMGYzbiIsImNhdGVnb3J5IjoiNjEifV19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0YWJzLWxpc3QtaW5mb3JtZXMifQ=="] </div> </div> </div> </section> ') in /app/web/wp/wp-includes/shortcodes.php (line 273)
  1.     }
  2.     $content do_shortcodes_in_html_tags$content$ignore_html$tagnames );
  3.     $pattern get_shortcode_regex$tagnames );
  4.     $content preg_replace_callback"/$pattern/"'do_shortcode_tag'$content );
  5.     // Always restore square braces so we don't break things like <!--[if IE ]>.
  6.     $content unescape_invalid_shortcodes$content );
  7.     // Only remove the filter if it was added in this scope.
do_shortcode(' <section class="elementor-section elementor-top-section elementor-element elementor-element-a8e1ac1 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="a8e1ac1" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a2c483a" data-id="a2c483a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> [elementor-element k="950752978d980af0e29fe159f8354682" data="eyJpZCI6IjgyZDdhODkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0YWJzIjpbeyJfaWQiOiIyNjYyZjE5IiwidGFiX3RpdGxlIjoiU2FuaXRhcmlvcyIsImNhdGVnb3J5IjoiNDYifSx7Il9pZCI6IjU5OGYyMWYiLCJ0YWJfdGl0bGUiOiJBbWJpZW50YWxlcyIsImNhdGVnb3J5IjoiNTgifSx7Il9pZCI6ImMzZjNmMzciLCJ0YWJfdGl0bGUiOiJQZXNxdWVyb3MiLCJjYXRlZ29yeSI6IjU5In0seyJfaWQiOiJkZTA1MzQ4IiwidGFiX3RpdGxlIjoiSW5zdGl0dWNpb25hbGVzIiwiY2F0ZWdvcnkiOiI2MCJ9LHsiX2lkIjoiYjZjMGQ3NSIsInRhYl90aXRsZSI6Iklub2N1aWRhZCB5IENlcnRpZmljYWNpXHUwMGYzbiIsImNhdGVnb3J5IjoiNjEifV19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0YWJzLWxpc3QtaW5mb3JtZXMifQ=="] </div> </div> </div> </section> ') in /app/web/app/plugins/elementor/core/base/document.php (line 1870)
  1.                 }
  2.             }
  3.         }
  4.         if ( ! empty( $cached_data['content'] ) ) {
  5.             $content do_shortcode$cached_data['content'] );
  6.             if ( has_blocks$content ) ) {
  7.                 $content do_blocks$content );
  8.             }
Document->print_elements(array(array('id' => 'a8e1ac1', 'elType' => 'section', 'settings' => array(), 'elements' => array(array('id' => 'a2c483a', 'elType' => 'column', 'settings' => array('_column_size' => 100, '_inline_size' => null), 'elements' => array(array('id' => '82d7a89', 'elType' => 'widget', 'settings' => array('tabs' => array(array('_id' => '2662f19', 'tab_title' => 'Sanitarios', 'category' => '46'), array('_id' => '598f21f', 'tab_title' => 'Ambientales', 'category' => '58'), array('_id' => 'c3f3f37', 'tab_title' => 'Pesqueros', 'category' => '59'), array('_id' => 'de05348', 'tab_title' => 'Institucionales', 'category' => '60'), array('_id' => 'b6c0d75', 'tab_title' => 'Inocuidad y Certificaci贸n', 'category' => '61'))), 'elements' => array(), 'widgetType' => 'tabs-list-informes')), 'isInner' => false)), 'isInner' => false))) in /app/web/app/plugins/elementor/core/base/document.php (line 1203)
  1.             $elements_data $this->get_elements_data();
  2.         }
  3.         ?>
  4.         <div <?php Utils::print_html_attributes$this->get_container_attributes() ); ?>>
  5.                 <?php $this->print_elements$elements_data ); ?>
  6.         </div>
  7.         <?php
  8.     }
  9.     /**
Document->print_elements_with_wrapper(array(array('id' => 'a8e1ac1', 'elType' => 'section', 'settings' => array(), 'elements' => array(array('id' => 'a2c483a', 'elType' => 'column', 'settings' => array('_column_size' => 100, '_inline_size' => null), 'elements' => array(array('id' => '82d7a89', 'elType' => 'widget', 'settings' => array('tabs' => array(array('_id' => '2662f19', 'tab_title' => 'Sanitarios', 'category' => '46'), array('_id' => '598f21f', 'tab_title' => 'Ambientales', 'category' => '58'), array('_id' => 'c3f3f37', 'tab_title' => 'Pesqueros', 'category' => '59'), array('_id' => 'de05348', 'tab_title' => 'Institucionales', 'category' => '60'), array('_id' => 'b6c0d75', 'tab_title' => 'Inocuidad y Certificaci贸n', 'category' => '61'))), 'elements' => array(), 'widgetType' => 'tabs-list-informes')), 'isInner' => false)), 'isInner' => false))) in /app/web/app/plugins/elementor/includes/frontend.php (line 1172)
  1.         if ( ! empty( $css_file ) && $with_css ) {
  2.             $css_file->print_css();
  3.         }
  4.         $document->print_elements_with_wrapper$data );
  5.         $content ob_get_clean();
  6.         $content $this->process_more_tag$content );
Frontend->get_builder_content(69) in /app/web/app/plugins/elementor/includes/frontend.php (line 1067)
  1.         // Remove the filter itself in order to allow other `the_content` in the elements
  2.         $this->remove_content_filter();
  3.         $post_id get_the_ID();
  4.         $builder_content $this->get_builder_content$post_id );
  5.         if ( ! empty( $builder_content ) ) {
  6.             $content $builder_content;
  7.             $this->remove_content_filters();
  8.         }
Frontend->apply_builder_in_content('<!-- Inicio de los tabs --> <ul id="custom-tabs" role="tablist"> <li role="presentation"> <a id="tab-1" data-bs-toggle="tab" href="#tab-content-1" role="tab" aria-controls="tab-content-1" aria-selected="true"> Sanitarios </a> </li> <li role="presentation"> <a id="tab-2" data-bs-toggle="tab" href="#tab-content-2" role="tab" aria-controls="tab-content-2" aria-selected="false"> Ambientales </a> </li> <li role="presentation"> <a id="tab-3" data-bs-toggle="tab" href="#tab-content-3" role="tab" aria-controls="tab-content-3" aria-selected="false"> Pesqueros </a> </li> <li role="presentation"> <a id="tab-4" data-bs-toggle="tab" href="#tab-content-4" role="tab" aria-controls="tab-content-4" aria-selected="false"> Institucionales </a> </li> <li role="presentation"> <a id="tab-5" data-bs-toggle="tab" href="#tab-content-5" role="tab" aria-controls="tab-content-5" aria-selected="false"> Inocuidad y Certificaci贸n </a> </li> </ul> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <!-- Fin de los tabs -->') in /app/web/wp/wp-includes/class-wp-hook.php (line 324)
  1.                 // Avoid the array_slice() if possible.
  2.                 if ( === $the_['accepted_args'] ) {
  3.                     $value call_user_func$the_['function'] );
  4.                 } elseif ( $the_['accepted_args'] >= $num_args ) {
  5.                     $value call_user_func_array$the_['function'], $args );
  6.                 } else {
  7.                     $value call_user_func_array$the_['function'], array_slice$args0$the_['accepted_args'] ) );
  8.                 }
  9.             }
  10.         } while ( false !== next$this->iterations$nesting_level ] ) );
WP_Hook->apply_filters('<!-- Inicio de los tabs --> <ul id="custom-tabs" role="tablist"> <li role="presentation"> <a id="tab-1" data-bs-toggle="tab" href="#tab-content-1" role="tab" aria-controls="tab-content-1" aria-selected="true"> Sanitarios </a> </li> <li role="presentation"> <a id="tab-2" data-bs-toggle="tab" href="#tab-content-2" role="tab" aria-controls="tab-content-2" aria-selected="false"> Ambientales </a> </li> <li role="presentation"> <a id="tab-3" data-bs-toggle="tab" href="#tab-content-3" role="tab" aria-controls="tab-content-3" aria-selected="false"> Pesqueros </a> </li> <li role="presentation"> <a id="tab-4" data-bs-toggle="tab" href="#tab-content-4" role="tab" aria-controls="tab-content-4" aria-selected="false"> Institucionales </a> </li> <li role="presentation"> <a id="tab-5" data-bs-toggle="tab" href="#tab-content-5" role="tab" aria-controls="tab-content-5" aria-selected="false"> Inocuidad y Certificaci贸n </a> </li> </ul> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <!-- Fin de los tabs -->', array('<!-- Inicio de los tabs --> <ul id="custom-tabs" role="tablist"> <li role="presentation"> <a id="tab-1" data-bs-toggle="tab" href="#tab-content-1" role="tab" aria-controls="tab-content-1" aria-selected="true"> Sanitarios </a> </li> <li role="presentation"> <a id="tab-2" data-bs-toggle="tab" href="#tab-content-2" role="tab" aria-controls="tab-content-2" aria-selected="false"> Ambientales </a> </li> <li role="presentation"> <a id="tab-3" data-bs-toggle="tab" href="#tab-content-3" role="tab" aria-controls="tab-content-3" aria-selected="false"> Pesqueros </a> </li> <li role="presentation"> <a id="tab-4" data-bs-toggle="tab" href="#tab-content-4" role="tab" aria-controls="tab-content-4" aria-selected="false"> Institucionales </a> </li> <li role="presentation"> <a id="tab-5" data-bs-toggle="tab" href="#tab-content-5" role="tab" aria-controls="tab-content-5" aria-selected="false"> Inocuidad y Certificaci贸n </a> </li> </ul> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <!-- Fin de los tabs -->')) in /app/web/wp/wp-includes/plugin.php (line 205)
  1.     }
  2.     // Pass the value to WP_Hook.
  3.     array_unshift$args$value );
  4.     $filtered $wp_filter$hook_name ]->apply_filters$value$args );
  5.     array_pop$wp_current_filter );
  6.     return $filtered;
  7. }
apply_filters('the_content', '<!-- Inicio de los tabs --> <ul id="custom-tabs" role="tablist"> <li role="presentation"> <a id="tab-1" data-bs-toggle="tab" href="#tab-content-1" role="tab" aria-controls="tab-content-1" aria-selected="true"> Sanitarios </a> </li> <li role="presentation"> <a id="tab-2" data-bs-toggle="tab" href="#tab-content-2" role="tab" aria-controls="tab-content-2" aria-selected="false"> Ambientales </a> </li> <li role="presentation"> <a id="tab-3" data-bs-toggle="tab" href="#tab-content-3" role="tab" aria-controls="tab-content-3" aria-selected="false"> Pesqueros </a> </li> <li role="presentation"> <a id="tab-4" data-bs-toggle="tab" href="#tab-content-4" role="tab" aria-controls="tab-content-4" aria-selected="false"> Institucionales </a> </li> <li role="presentation"> <a id="tab-5" data-bs-toggle="tab" href="#tab-content-5" role="tab" aria-controls="tab-content-5" aria-selected="false"> Inocuidad y Certificaci贸n </a> </li> </ul> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table> <!-- Fin de los tabs -->') in /app/web/wp/wp-includes/post-template.php (line 256)
  1.      *
  2.      * @since 0.71
  3.      *
  4.      * @param string $content Content of the current post.
  5.      */
  6.     $content apply_filters'the_content'$content );
  7.     $content str_replace']]>'']]&gt;'$content );
  8.     echo $content;
  9. }
  10. /**
  1. <?php (the_content()); ?>
  2. <?php echo wp_link_pages(['echo' => 0'before' => '<nav class="page-nav"><p>' __('Pages:''sage'), 'after' => '</p></nav>']); ?>
  3. <?php /**PATH /app/web/app/themes/sernapesca/resources/views/partials/content-page.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
in /app/vendor/illuminate/filesystem/Filesystem.php :: Illuminate\Filesystem\{closure} (line 110)
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
in /app/vendor/illuminate/view/View.php -> getContents (line 178)
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
in /app/vendor/illuminate/view/View.php -> renderContents (line 147)
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <div class="container">
  2.   <?php while(have_posts()): ?> <?php (the_post()); ?>
  3.   <?php echo $__env->make('partials.page-header'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  4.   
  5.   <?php echo $__env->first(['partials.content-page''partials.content'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  6.   <?php endwhile; ?>
  7. </div>
  8. <?php $__env->stopSection(); ?>
  9. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /app/web/app/themes/sernapesca/resources/views/page.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
in /app/vendor/illuminate/filesystem/Filesystem.php :: Illuminate\Filesystem\{closure} (line 110)
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
in /app/vendor/illuminate/view/View.php -> getContents (line 178)
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
in /app/vendor/illuminate/view/View.php -> renderContents (line 147)
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
View->render() in /app/web/app/themes/sernapesca/index.php (line 17)
  1.   <body <?php body_class(); ?>>
  2.     <?php wp_body_open(); ?>
  3.     <?php do_action('get_header'); ?>
  4.     <div id="app">
  5.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  6.     </div>
  7.     <?php do_action('get_footer'); ?>
  8.     <?php wp_footer(); ?>
  9. <script src="https://apps.sae1.pure.cloud/widgets/9.0/cxbus.min.js"
include('/app/web/app/themes/sernapesca/index.php') in /app/web/wp/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/app/web/wp/wp-includes/template-loader.php') in /app/web/wp/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/app/web/wp/wp-blog-header.php') in /app/web/index.php (line 6)
  1. <?php
  2. /**
  3.  * WordPress View Bootstrapper
  4.  */
  5. define('WP_USE_THEMES'true);
  6. require __DIR__ '/wp/wp-blog-header.php';

Stack Traces 3

[3/3] ViewException
Illuminate\View\ViewException:
Call to undefined function Sernapesca\Widgets\get_field() (View: /app/web/app/themes/sernapesca/resources/views/partials/content-page.blade.php) (View: /app/web/app/themes/sernapesca/resources/views/partials/content-page.blade.php)

  at /app/web/app/themes/sernapesca/inc/elementor/tabs_listado_informes.php:124
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ViewException), 1)
     (/app/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/app/web/app/cache/acorn/framework/views/fbb0b3ee8873c6fc5968f522f76da985a37176ff.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'sernapesca'))
     (/app/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/app/web/app/themes/sernapesca/resources/views/page.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'sernapesca'))
     (/app/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/app/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/app/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/app/web/app/themes/sernapesca/index.php:17)
  at include('/app/web/app/themes/sernapesca/index.php')
     (/app/web/wp/wp-includes/template-loader.php:106)
  at require_once('/app/web/wp/wp-includes/template-loader.php')
     (/app/web/wp/wp-blog-header.php:19)
  at require('/app/web/wp/wp-blog-header.php')
     (/app/web/index.php:6)                
[2/3] ViewException
Illuminate\View\ViewException:
Call to undefined function Sernapesca\Widgets\get_field() (View: /app/web/app/themes/sernapesca/resources/views/partials/content-page.blade.php)

  at /app/web/app/themes/sernapesca/inc/elementor/tabs_listado_informes.php:124
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(Error), 3)
     (/app/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/app/web/app/cache/acorn/framework/views/6be4c5d3548ebc5fd934912d1e1a1c5508ce241a.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'sernapesca', 'title' => 'Resultados de gesti贸n'))
     (/app/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/app/web/app/themes/sernapesca/resources/views/partials/content-page.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'sernapesca', 'title' => 'Resultados de gesti贸n'))
     (/app/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/app/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/app/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/app/web/app/cache/acorn/framework/views/fbb0b3ee8873c6fc5968f522f76da985a37176ff.php:40)
  at require('/app/web/app/cache/acorn/framework/views/fbb0b3ee8873c6fc5968f522f76da985a37176ff.php')
     (/app/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/app/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire('/app/web/app/cache/acorn/framework/views/fbb0b3ee8873c6fc5968f522f76da985a37176ff.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'sernapesca'))
     (/app/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/app/web/app/cache/acorn/framework/views/fbb0b3ee8873c6fc5968f522f76da985a37176ff.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'sernapesca'))
     (/app/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/app/web/app/themes/sernapesca/resources/views/page.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'sernapesca'))
     (/app/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/app/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/app/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/app/web/app/themes/sernapesca/index.php:17)
  at include('/app/web/app/themes/sernapesca/index.php')
     (/app/web/wp/wp-includes/template-loader.php:106)
  at require_once('/app/web/wp/wp-includes/template-loader.php')
     (/app/web/wp/wp-blog-header.php:19)
  at require('/app/web/wp/wp-blog-header.php')
     (/app/web/index.php:6)                
[1/3] Error
Error:
Call to undefined function Sernapesca\Widgets\get_field()

  at /app/web/app/themes/sernapesca/inc/elementor/tabs_listado_informes.php:124
  at Sernapesca\Widgets\TabsListInformes->render_tab_content('46')
     (/app/web/app/themes/sernapesca/inc/elementor/tabs_listado_informes.php:260)
  at Sernapesca\Widgets\TabsListInformes->render()
     (/app/web/app/plugins/elementor/includes/base/controls-stack.php:2374)
  at Elementor\Controls_Stack->render_by_mode()
     (/app/web/app/plugins/elementor/includes/base/widget-base.php:636)
  at Elementor\Widget_Base->render_content()
     (/app/web/app/plugins/elementor/includes/base/widget-base.php:774)
  at Elementor\Widget_Base->print_content()
     (/app/web/app/plugins/elementor/includes/base/element-base.php:492)
  at Elementor\Element_Base->print_element()
     (/app/web/app/plugins/elementor/modules/element-cache/module.php:71)
  at Elementor\Modules\ElementCache\Module->Elementor\Modules\ElementCache\{closure}(array('k' => '950752978d980af0e29fe159f8354682', 'data' => 'eyJpZCI6IjgyZDdhODkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0YWJzIjpbeyJfaWQiOiIyNjYyZjE5IiwidGFiX3RpdGxlIjoiU2FuaXRhcmlvcyIsImNhdGVnb3J5IjoiNDYifSx7Il9pZCI6IjU5OGYyMWYiLCJ0YWJfdGl0bGUiOiJBbWJpZW50YWxlcyIsImNhdGVnb3J5IjoiNTgifSx7Il9pZCI6ImMzZjNmMzciLCJ0YWJfdGl0bGUiOiJQZXNxdWVyb3MiLCJjYXRlZ29yeSI6IjU5In0seyJfaWQiOiJkZTA1MzQ4IiwidGFiX3RpdGxlIjoiSW5zdGl0dWNpb25hbGVzIiwiY2F0ZWdvcnkiOiI2MCJ9LHsiX2lkIjoiYjZjMGQ3NSIsInRhYl90aXRsZSI6Iklub2N1aWRhZCB5IENlcnRpZmljYWNpXHUwMGYzbiIsImNhdGVnb3J5IjoiNjEifV19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0YWJzLWxpc3QtaW5mb3JtZXMifQ=='), '', 'elementor-element')
     (/app/web/wp/wp-includes/shortcodes.php:434)
  at do_shortcode_tag(array('[elementor-element k="950752978d980af0e29fe159f8354682" data="eyJpZCI6IjgyZDdhODkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0YWJzIjpbeyJfaWQiOiIyNjYyZjE5IiwidGFiX3RpdGxlIjoiU2FuaXRhcmlvcyIsImNhdGVnb3J5IjoiNDYifSx7Il9pZCI6IjU5OGYyMWYiLCJ0YWJfdGl0bGUiOiJBbWJpZW50YWxlcyIsImNhdGVnb3J5IjoiNTgifSx7Il9pZCI6ImMzZjNmMzciLCJ0YWJfdGl0bGUiOiJQZXNxdWVyb3MiLCJjYXRlZ29yeSI6IjU5In0seyJfaWQiOiJkZTA1MzQ4IiwidGFiX3RpdGxlIjoiSW5zdGl0dWNpb25hbGVzIiwiY2F0ZWdvcnkiOiI2MCJ9LHsiX2lkIjoiYjZjMGQ3NSIsInRhYl90aXRsZSI6Iklub2N1aWRhZCB5IENlcnRpZmljYWNpXHUwMGYzbiIsImNhdGVnb3J5IjoiNjEifV19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0YWJzLWxpc3QtaW5mb3JtZXMifQ=="]', '', 'elementor-element', ' k="950752978d980af0e29fe159f8354682" data="eyJpZCI6IjgyZDdhODkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0YWJzIjpbeyJfaWQiOiIyNjYyZjE5IiwidGFiX3RpdGxlIjoiU2FuaXRhcmlvcyIsImNhdGVnb3J5IjoiNDYifSx7Il9pZCI6IjU5OGYyMWYiLCJ0YWJfdGl0bGUiOiJBbWJpZW50YWxlcyIsImNhdGVnb3J5IjoiNTgifSx7Il9pZCI6ImMzZjNmMzciLCJ0YWJfdGl0bGUiOiJQZXNxdWVyb3MiLCJjYXRlZ29yeSI6IjU5In0seyJfaWQiOiJkZTA1MzQ4IiwidGFiX3RpdGxlIjoiSW5zdGl0dWNpb25hbGVzIiwiY2F0ZWdvcnkiOiI2MCJ9LHsiX2lkIjoiYjZjMGQ3NSIsInRhYl90aXRsZSI6Iklub2N1aWRhZCB5IENlcnRpZmljYWNpXHUwMGYzbiIsImNhdGVnb3J5IjoiNjEifV19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0YWJzLWxpc3QtaW5mb3JtZXMifQ=="', '', '', ''))
  at preg_replace_callback('/\\[(\\[?)(elementor\\-element)(?![\\w-])([^\\]\\/]*(?:\\/(?!\\])[^\\]\\/]*)*?)(?:(\\/)\\]|\\](?:([^\\[]*+(?:\\[(?!\\/\\2\\])[^\\[]*+)*+)\\[\\/\\2\\])?)(\\]?)/', 'do_shortcode_tag', '		<section class="elementor-section elementor-top-section elementor-element elementor-element-a8e1ac1 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="a8e1ac1" data-element_type="section">						<div class="elementor-container elementor-column-gap-default">					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a2c483a" data-id="a2c483a" data-element_type="column">			<div class="elementor-widget-wrap elementor-element-populated">				[elementor-element k="950752978d980af0e29fe159f8354682" data="eyJpZCI6IjgyZDdhODkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0YWJzIjpbeyJfaWQiOiIyNjYyZjE5IiwidGFiX3RpdGxlIjoiU2FuaXRhcmlvcyIsImNhdGVnb3J5IjoiNDYifSx7Il9pZCI6IjU5OGYyMWYiLCJ0YWJfdGl0bGUiOiJBbWJpZW50YWxlcyIsImNhdGVnb3J5IjoiNTgifSx7Il9pZCI6ImMzZjNmMzciLCJ0YWJfdGl0bGUiOiJQZXNxdWVyb3MiLCJjYXRlZ29yeSI6IjU5In0seyJfaWQiOiJkZTA1MzQ4IiwidGFiX3RpdGxlIjoiSW5zdGl0dWNpb25hbGVzIiwiY2F0ZWdvcnkiOiI2MCJ9LHsiX2lkIjoiYjZjMGQ3NSIsInRhYl90aXRsZSI6Iklub2N1aWRhZCB5IENlcnRpZmljYWNpXHUwMGYzbiIsImNhdGVnb3J5IjoiNjEifV19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0YWJzLWxpc3QtaW5mb3JtZXMifQ=="]			</div>		</div>					</div>		</section>		')
     (/app/web/wp/wp-includes/shortcodes.php:273)
  at do_shortcode('		<section class="elementor-section elementor-top-section elementor-element elementor-element-a8e1ac1 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="a8e1ac1" data-element_type="section">						<div class="elementor-container elementor-column-gap-default">					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a2c483a" data-id="a2c483a" data-element_type="column">			<div class="elementor-widget-wrap elementor-element-populated">				[elementor-element k="950752978d980af0e29fe159f8354682" data="eyJpZCI6IjgyZDdhODkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0YWJzIjpbeyJfaWQiOiIyNjYyZjE5IiwidGFiX3RpdGxlIjoiU2FuaXRhcmlvcyIsImNhdGVnb3J5IjoiNDYifSx7Il9pZCI6IjU5OGYyMWYiLCJ0YWJfdGl0bGUiOiJBbWJpZW50YWxlcyIsImNhdGVnb3J5IjoiNTgifSx7Il9pZCI6ImMzZjNmMzciLCJ0YWJfdGl0bGUiOiJQZXNxdWVyb3MiLCJjYXRlZ29yeSI6IjU5In0seyJfaWQiOiJkZTA1MzQ4IiwidGFiX3RpdGxlIjoiSW5zdGl0dWNpb25hbGVzIiwiY2F0ZWdvcnkiOiI2MCJ9LHsiX2lkIjoiYjZjMGQ3NSIsInRhYl90aXRsZSI6Iklub2N1aWRhZCB5IENlcnRpZmljYWNpXHUwMGYzbiIsImNhdGVnb3J5IjoiNjEifV19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0YWJzLWxpc3QtaW5mb3JtZXMifQ=="]			</div>		</div>					</div>		</section>		')
     (/app/web/app/plugins/elementor/core/base/document.php:1870)
  at Elementor\Core\Base\Document->print_elements(array(array('id' => 'a8e1ac1', 'elType' => 'section', 'settings' => array(), 'elements' => array(array('id' => 'a2c483a', 'elType' => 'column', 'settings' => array('_column_size' => 100, '_inline_size' => null), 'elements' => array(array('id' => '82d7a89', 'elType' => 'widget', 'settings' => array('tabs' => array(array('_id' => '2662f19', 'tab_title' => 'Sanitarios', 'category' => '46'), array('_id' => '598f21f', 'tab_title' => 'Ambientales', 'category' => '58'), array('_id' => 'c3f3f37', 'tab_title' => 'Pesqueros', 'category' => '59'), array('_id' => 'de05348', 'tab_title' => 'Institucionales', 'category' => '60'), array('_id' => 'b6c0d75', 'tab_title' => 'Inocuidad y Certificaci贸n', 'category' => '61'))), 'elements' => array(), 'widgetType' => 'tabs-list-informes')), 'isInner' => false)), 'isInner' => false)))
     (/app/web/app/plugins/elementor/core/base/document.php:1203)
  at Elementor\Core\Base\Document->print_elements_with_wrapper(array(array('id' => 'a8e1ac1', 'elType' => 'section', 'settings' => array(), 'elements' => array(array('id' => 'a2c483a', 'elType' => 'column', 'settings' => array('_column_size' => 100, '_inline_size' => null), 'elements' => array(array('id' => '82d7a89', 'elType' => 'widget', 'settings' => array('tabs' => array(array('_id' => '2662f19', 'tab_title' => 'Sanitarios', 'category' => '46'), array('_id' => '598f21f', 'tab_title' => 'Ambientales', 'category' => '58'), array('_id' => 'c3f3f37', 'tab_title' => 'Pesqueros', 'category' => '59'), array('_id' => 'de05348', 'tab_title' => 'Institucionales', 'category' => '60'), array('_id' => 'b6c0d75', 'tab_title' => 'Inocuidad y Certificaci贸n', 'category' => '61'))), 'elements' => array(), 'widgetType' => 'tabs-list-informes')), 'isInner' => false)), 'isInner' => false)))
     (/app/web/app/plugins/elementor/includes/frontend.php:1172)
  at Elementor\Frontend->get_builder_content(69)
     (/app/web/app/plugins/elementor/includes/frontend.php:1067)
  at Elementor\Frontend->apply_builder_in_content('<!-- Inicio de los tabs -->                <ul id="custom-tabs" role="tablist">                                            <li role="presentation">                            <a id="tab-1" data-bs-toggle="tab" href="#tab-content-1" role="tab" aria-controls="tab-content-1" aria-selected="true">                                Sanitarios                            </a>                        </li>                                            <li role="presentation">                            <a id="tab-2" data-bs-toggle="tab" href="#tab-content-2" role="tab" aria-controls="tab-content-2" aria-selected="false">                                Ambientales                            </a>                        </li>                                            <li role="presentation">                            <a id="tab-3" data-bs-toggle="tab" href="#tab-content-3" role="tab" aria-controls="tab-content-3" aria-selected="false">                                Pesqueros                            </a>                        </li>                                            <li role="presentation">                            <a id="tab-4" data-bs-toggle="tab" href="#tab-content-4" role="tab" aria-controls="tab-content-4" aria-selected="false">                                Institucionales                            </a>                        </li>                                            <li role="presentation">                            <a id="tab-5" data-bs-toggle="tab" href="#tab-content-5" role="tab" aria-controls="tab-content-5" aria-selected="false">                                Inocuidad y Certificaci贸n                            </a>                        </li>                                    </ul>                            <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                                    <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                                    <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                                    <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                                    <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                    <!-- Fin de los tabs -->')
     (/app/web/wp/wp-includes/class-wp-hook.php:324)
  at WP_Hook->apply_filters('<!-- Inicio de los tabs -->                <ul id="custom-tabs" role="tablist">                                            <li role="presentation">                            <a id="tab-1" data-bs-toggle="tab" href="#tab-content-1" role="tab" aria-controls="tab-content-1" aria-selected="true">                                Sanitarios                            </a>                        </li>                                            <li role="presentation">                            <a id="tab-2" data-bs-toggle="tab" href="#tab-content-2" role="tab" aria-controls="tab-content-2" aria-selected="false">                                Ambientales                            </a>                        </li>                                            <li role="presentation">                            <a id="tab-3" data-bs-toggle="tab" href="#tab-content-3" role="tab" aria-controls="tab-content-3" aria-selected="false">                                Pesqueros                            </a>                        </li>                                            <li role="presentation">                            <a id="tab-4" data-bs-toggle="tab" href="#tab-content-4" role="tab" aria-controls="tab-content-4" aria-selected="false">                                Institucionales                            </a>                        </li>                                            <li role="presentation">                            <a id="tab-5" data-bs-toggle="tab" href="#tab-content-5" role="tab" aria-controls="tab-content-5" aria-selected="false">                                Inocuidad y Certificaci贸n                            </a>                        </li>                                    </ul>                            <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                                    <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                                    <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                                    <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                                    <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                    <!-- Fin de los tabs -->', array('<!-- Inicio de los tabs -->                <ul id="custom-tabs" role="tablist">                                            <li role="presentation">                            <a id="tab-1" data-bs-toggle="tab" href="#tab-content-1" role="tab" aria-controls="tab-content-1" aria-selected="true">                                Sanitarios                            </a>                        </li>                                            <li role="presentation">                            <a id="tab-2" data-bs-toggle="tab" href="#tab-content-2" role="tab" aria-controls="tab-content-2" aria-selected="false">                                Ambientales                            </a>                        </li>                                            <li role="presentation">                            <a id="tab-3" data-bs-toggle="tab" href="#tab-content-3" role="tab" aria-controls="tab-content-3" aria-selected="false">                                Pesqueros                            </a>                        </li>                                            <li role="presentation">                            <a id="tab-4" data-bs-toggle="tab" href="#tab-content-4" role="tab" aria-controls="tab-content-4" aria-selected="false">                                Institucionales                            </a>                        </li>                                            <li role="presentation">                            <a id="tab-5" data-bs-toggle="tab" href="#tab-content-5" role="tab" aria-controls="tab-content-5" aria-selected="false">                                Inocuidad y Certificaci贸n                            </a>                        </li>                                    </ul>                            <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                                    <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                                    <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                                    <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                                    <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                    <!-- Fin de los tabs -->'))
     (/app/web/wp/wp-includes/plugin.php:205)
  at apply_filters('the_content', '<!-- Inicio de los tabs -->                <ul id="custom-tabs" role="tablist">                                            <li role="presentation">                            <a id="tab-1" data-bs-toggle="tab" href="#tab-content-1" role="tab" aria-controls="tab-content-1" aria-selected="true">                                Sanitarios                            </a>                        </li>                                            <li role="presentation">                            <a id="tab-2" data-bs-toggle="tab" href="#tab-content-2" role="tab" aria-controls="tab-content-2" aria-selected="false">                                Ambientales                            </a>                        </li>                                            <li role="presentation">                            <a id="tab-3" data-bs-toggle="tab" href="#tab-content-3" role="tab" aria-controls="tab-content-3" aria-selected="false">                                Pesqueros                            </a>                        </li>                                            <li role="presentation">                            <a id="tab-4" data-bs-toggle="tab" href="#tab-content-4" role="tab" aria-controls="tab-content-4" aria-selected="false">                                Institucionales                            </a>                        </li>                                            <li role="presentation">                            <a id="tab-5" data-bs-toggle="tab" href="#tab-content-5" role="tab" aria-controls="tab-content-5" aria-selected="false">                                Inocuidad y Certificaci贸n                            </a>                        </li>                                    </ul>                            <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                                    <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                                    <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                                    <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                                    <table class=\'table\'><thead><th>Nombre</th><th>A帽o</th><th>Descargar</th></thead><tbody></tbody></table>                                    <!-- Fin de los tabs -->')
     (/app/web/wp/wp-includes/post-template.php:256)
  at the_content()
     (/app/web/app/cache/acorn/framework/views/6be4c5d3548ebc5fd934912d1e1a1c5508ce241a.php:1)
  at require('/app/web/app/cache/acorn/framework/views/6be4c5d3548ebc5fd934912d1e1a1c5508ce241a.php')
     (/app/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/app/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire('/app/web/app/cache/acorn/framework/views/6be4c5d3548ebc5fd934912d1e1a1c5508ce241a.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'sernapesca', 'title' => 'Resultados de gesti贸n'))
     (/app/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/app/web/app/cache/acorn/framework/views/6be4c5d3548ebc5fd934912d1e1a1c5508ce241a.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'sernapesca', 'title' => 'Resultados de gesti贸n'))
     (/app/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/app/web/app/themes/sernapesca/resources/views/partials/content-page.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'sernapesca', 'title' => 'Resultados de gesti贸n'))
     (/app/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/app/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/app/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/app/web/app/cache/acorn/framework/views/fbb0b3ee8873c6fc5968f522f76da985a37176ff.php:40)
  at require('/app/web/app/cache/acorn/framework/views/fbb0b3ee8873c6fc5968f522f76da985a37176ff.php')
     (/app/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/app/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire('/app/web/app/cache/acorn/framework/views/fbb0b3ee8873c6fc5968f522f76da985a37176ff.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'sernapesca'))
     (/app/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/app/web/app/cache/acorn/framework/views/fbb0b3ee8873c6fc5968f522f76da985a37176ff.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'sernapesca'))
     (/app/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/app/web/app/themes/sernapesca/resources/views/page.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'sernapesca'))
     (/app/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/app/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/app/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/app/web/app/themes/sernapesca/index.php:17)
  at include('/app/web/app/themes/sernapesca/index.php')
     (/app/web/wp/wp-includes/template-loader.php:106)
  at require_once('/app/web/wp/wp-includes/template-loader.php')
     (/app/web/wp/wp-blog-header.php:19)
  at require('/app/web/wp/wp-blog-header.php')
     (/app/web/index.php:6)