"Undefined array key "options""
],
'paddings' => [
[
'breakpoint' => '',
'sides' => ['t' => 0, 'b' => 0]
]
]
]),
]);
// Headline & Content
array_push($sections, [
'acf_fc_layout' => 'contents',
'rows' => [
[
'acf_fc_layout' => 'headline',
'tag' => 'h2',
'headline' => $overview['content']['headline'],
'subline' => $overview['content']['subline'],
'options' => array_merge($overview['content']['options'], [
'position' => 'center',
'widths' => [
[
'breakpoint' => '',
'width' => 24,
],
[
'breakpoint' => 'md',
'width' => 12,
]
],
'paddings' => [
[
'breakpoint' => '',
'sides' => ['t' => 3]
],
[
'breakpoint' => 'md',
'sides' => ['t' => 5]
]
2
"Undefined array key "options""
"/www/htdocs/w01cc2f3/www.bonhoefferstory.de/wp-content/themes/bonhoefferstory/pieces/stories.php"
53
if ( isset( $s ) ) {
$s = esc_attr( $s );
}
/**
* Fires before a template file is loaded.
*
* @since 6.1.0
*
* @param string $_template_file The full path to the template file.
* @param bool $load_once Whether to require_once or require.
* @param array $args Additional arguments passed to the template.
*/
do_action( 'wp_before_load_template', $_template_file, $load_once, $args );
if ( $load_once ) {
require_once $_template_file;
} else {
require $_template_file;
}
/**
* Fires after a template file is loaded.
*
* @since 6.1.0
*
* @param string $_template_file The full path to the template file.
* @param bool $load_once Whether to require_once or require.
* @param array $args Additional arguments passed to the template.
*/
do_action( 'wp_after_load_template', $_template_file, $load_once, $args );
}
"/www/htdocs/w01cc2f3/www.bonhoefferstory.de/wp-content/themes/bonhoefferstory/pieces/stories.php"
$located = '';
foreach ( (array) $template_names as $template_name ) {
if ( ! $template_name ) {
continue;
}
if ( file_exists( $wp_stylesheet_path . '/' . $template_name ) ) {
$located = $wp_stylesheet_path . '/' . $template_name;
break;
} elseif ( $is_child_theme && file_exists( $wp_template_path . '/' . $template_name ) ) {
$located = $wp_template_path . '/' . $template_name;
break;
} elseif ( file_exists( ABSPATH . WPINC . '/theme-compat/' . $template_name ) ) {
$located = ABSPATH . WPINC . '/theme-compat/' . $template_name;
break;
}
}
if ( $load && '' !== $located ) {
load_template( $located, $load_once, $args );
}
return $located;
}
/**
* Requires the template file with WordPress environment.
*
* The globals are set up for the template file to ensure that the WordPress
* environment is available from within the function. The query variables are
* also available.
*
* @since 1.5.0
* @since 5.5.0 The `$args` parameter was added.
*
* @global array $posts
* @global WP_Post $post Global post object.
* @global bool $wp_did_header
* @global WP_Query $wp_query WordPress Query object.
* @global WP_Rewrite $wp_rewrite WordPress rewrite component.
"/www/htdocs/w01cc2f3/www.bonhoefferstory.de/wp-content/themes/bonhoefferstory/pieces/stories.php"
false
[]
$templates[] = "{$slug}-{$name}.php";
}
$templates[] = "{$slug}.php";
/**
* Fires before an attempt is made to locate and load a template part.
*
* @since 5.2.0
* @since 5.5.0 The `$args` parameter was added.
*
* @param string $slug The slug name for the generic template.
* @param string $name The name of the specialized template or an empty
* string if there is none.
* @param string[] $templates Array of template files to search for, in order.
* @param array $args Additional arguments passed to the template.
*/
do_action( 'get_template_part', $slug, $name, $templates, $args );
if ( ! locate_template( $templates, true, false, $args ) ) {
return false;
}
}
/**
* Displays search form.
*
* Will first attempt to locate the searchform.php file in either the child or
* the parent, then load it. If it doesn't exist, then the default search form
* will be displayed. The default search form is HTML, which will be displayed.
* There is a filter applied to the search form HTML in order to edit or replace
* it. The filter is {@see 'get_search_form'}.
*
* This function is primarily used by themes which want to hardcode the search
* form into the sidebar and also by the search widget in WordPress.
*
* There is also an action that is called whenever the function is run called,
* {@see 'pre_get_search_form'}. This can be useful for outputting JavaScript that the
* search relies on or various formatting that applies to the beginning of the
* search. To give a few examples of what it can be used for.
0 of 0array:1 [▶ 0 => "pieces/stories.php" ]
true
false
[]
<?php defined('ABSPATH') or die();
get_header();
while ( have_posts() ) {
the_post();
$postType = get_post_type();
$postCategory = get_the_category();
if (locate_template('pieces/' . $postType . '.php')) {
get_template_part('pieces/' . $postType);
} else {
get_template_part('pieces/singular');
}
}
get_footer();
"pieces/stories"
}
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;
}
"/www/htdocs/w01cc2f3/www.bonhoefferstory.de/wp-content/themes/bonhoefferstory/singular.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';
}
"/www/htdocs/w01cc2f3/www.bonhoefferstory.de/wp-includes/template-loader.php"
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
"/www/htdocs/w01cc2f3/www.bonhoefferstory.de/wp-blog-header.php"
Key | Value |
wp-wpml_current_language | "de"
|
Key | Value |
SERVER_SOFTWARE | "Apache"
|
REQUEST_URI | "/stories/die-gruenen-engel/"
|
PATH | "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
USER | "w01cc2f3"
|
HOME | "/www/htdocs/w01cc2f3"
|
SCRIPT_NAME | "/index.php"
|
QUERY_STRING | "" |
REQUEST_METHOD | "GET"
|
SERVER_PROTOCOL | "HTTP/1.0"
|
GATEWAY_INTERFACE | "CGI/1.1"
|
REDIRECT_URL | "/stories/die-gruenen-engel/"
|
REMOTE_PORT | "32952"
|
SCRIPT_FILENAME | "/www/htdocs/w01cc2f3/www.bonhoefferstory.de/index.php"
|
SERVER_ADMIN | "webmaster@bonhoefferstory.de"
|
CONTEXT_DOCUMENT_ROOT | "/www/htdocs/w01cc2f3/www.bonhoefferstory.de/"
|
CONTEXT_PREFIX | "" |
REQUEST_SCHEME | "https"
|
DOCUMENT_ROOT | "/www/htdocs/w01cc2f3/www.bonhoefferstory.de/"
|
REMOTE_ADDR | "216.73.216.180"
|
SERVER_PORT | "443"
|
SERVER_ADDR | "85.13.152.87"
|
SERVER_NAME | "www.bonhoefferstory.de"
|
SERVER_SIGNATURE | "" |
HTTP_PRIORITY | "u=0, i"
|
HTTP_ACCEPT_ENCODING | "gzip, deflate, br, zstd"
|
HTTP_SEC_FETCH_DEST | "document"
|
HTTP_SEC_FETCH_USER | "?1"
|
HTTP_SEC_FETCH_MODE | "navigate"
|
HTTP_SEC_FETCH_SITE | "none"
|
HTTP_ACCEPT | "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"
|
HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
HTTP_UPGRADE_INSECURE_REQUESTS | "1"
|
HTTP_SEC_CH_UA_PLATFORM | "\"Windows\""
|
HTTP_SEC_CH_UA_MOBILE | "?0"
|
HTTP_SEC_CH_UA | "\"Chromium\";v=\"130\", \"HeadlessChrome\";v=\"130\", \"Not?A_Brand\";v=\"99\""
|
HTTP_CACHE_CONTROL | "no-cache"
|
HTTP_PRAGMA | "no-cache"
|
HTTP_CONNECTION | "close"
|
HTTP_X_REAL_IP | "216.73.216.180"
|
HTTP_HOST | "www.bonhoefferstory.de"
|
SSL_CLIENT_CERT | "" |
SSL_SERVER_CERT |
|
HTTPS | "on"
|
UNIQUE_ID | "aFmlJ70NttVC4aqmx3fd2wAAAGA"
|
REDIRECT_STATUS | "200"
|
REDIRECT_SSL_CLIENT_CERT | "" |
REDIRECT_SSL_SERVER_CERT |
|
REDIRECT_HTTPS | "on"
|
REDIRECT_UNIQUE_ID | "aFmlJ70NttVC4aqmx3fd2wAAAGA"
|
FCGI_ROLE | "RESPONDER"
|
PHP_SELF | "/index.php"
|
REQUEST_TIME_FLOAT | 1750705447.34
|
REQUEST_TIME | 1750705447
|
argv | [] |
argc | 0
|
Key | Value |
PATH | "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
USER | "w01cc2f3"
|
HOME | "/www/htdocs/w01cc2f3"
|
SCRIPT_NAME | "/index.php"
|
REQUEST_URI | "/stories/die-gruenen-engel/"
|
QUERY_STRING | "" |
REQUEST_METHOD | "GET"
|
SERVER_PROTOCOL | "HTTP/1.0"
|
GATEWAY_INTERFACE | "CGI/1.1"
|
REDIRECT_URL | "/stories/die-gruenen-engel/"
|
REMOTE_PORT | "32952"
|
SCRIPT_FILENAME | "/www/htdocs/w01cc2f3/www.bonhoefferstory.de/index.php"
|
SERVER_ADMIN | "webmaster@bonhoefferstory.de"
|
CONTEXT_DOCUMENT_ROOT | "/www/htdocs/w01cc2f3/www.bonhoefferstory.de/"
|
CONTEXT_PREFIX | "" |
REQUEST_SCHEME | "https"
|
DOCUMENT_ROOT | "/www/htdocs/w01cc2f3/www.bonhoefferstory.de/"
|
REMOTE_ADDR | "216.73.216.180"
|
SERVER_PORT | "443"
|
SERVER_ADDR | "85.13.152.87"
|
SERVER_NAME | "www.bonhoefferstory.de"
|
SERVER_SOFTWARE | "Apache"
|
SERVER_SIGNATURE | "" |
HTTP_PRIORITY | "u=0, i"
|
HTTP_ACCEPT_ENCODING | "gzip, deflate, br, zstd"
|
HTTP_SEC_FETCH_DEST | "document"
|
HTTP_SEC_FETCH_USER | "?1"
|
HTTP_SEC_FETCH_MODE | "navigate"
|
HTTP_SEC_FETCH_SITE | "none"
|
HTTP_ACCEPT | "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"
|
HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
HTTP_UPGRADE_INSECURE_REQUESTS | "1"
|
HTTP_SEC_CH_UA_PLATFORM | ""Windows""
|
HTTP_SEC_CH_UA_MOBILE | "?0"
|
HTTP_SEC_CH_UA | ""Chromium";v="130", "HeadlessChrome";v="130", "Not?A_Brand";v="99""
|
HTTP_CACHE_CONTROL | "no-cache"
|
HTTP_PRAGMA | "no-cache"
|
HTTP_CONNECTION | "close"
|
HTTP_X_REAL_IP | "216.73.216.180"
|
HTTP_HOST | "www.bonhoefferstory.de"
|
SSL_CLIENT_CERT | "" |
SSL_SERVER_CERT |
|
HTTPS | "on"
|
UNIQUE_ID | "aFmlJ70NttVC4aqmx3fd2wAAAGA"
|
REDIRECT_STATUS | "200"
|
REDIRECT_SSL_CLIENT_CERT | "" |
REDIRECT_SSL_SERVER_CERT |
|
REDIRECT_HTTPS | "on"
|
REDIRECT_UNIQUE_ID | "aFmlJ70NttVC4aqmx3fd2wAAAGA"
|
FCGI_ROLE | "RESPONDER"
|
PHP_SELF | "/index.php"
|
REQUEST_TIME_FLOAT | 1750705447.34
|
REQUEST_TIME | 1750705447
|
argv | [] |
argc | 0
|