<?php get_header(); ?>
<?php get_template_part('template-parts/header-flexible-sections');
$taxonomy = 'library_cat';
$terms = get_terms( array(
'taxonomy' => 'library_cat',
'hide_empty' => false,
) );
?>
<?php if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) : ?>
<section class="library-archive">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div class="library-list">
<?php foreach ( $terms as $term ) : ?>
<?php
$image = get_field( 'image', 'term_' . $term->term_id );
$image = $image ? $image['url']: "";
$title = $term->name;
$description = $term->description;
$link = get_term_link( $term );
set_query_var( 'image', $image );
set_query_var( 'link', $link );
set_query_var( 'title', $title);
set_query_var( 'description', $description );
get_template_part( 'template-parts/loop-library' );
?>
<?php endforeach; ?>
</div>
</div>
</div>
</div>
</section>
<?php endif; ?>
<?php get_template_part('template-parts/flexible-sections'); ?>
<?php get_footer(); ?>
"Cannot access offset of type string on string"
*/
$template = apply_filters( 'template_include', $template );
$is_stringy = is_string( $template ) || ( is_object( $template ) && method_exists( $template, '__toString' ) );
$template = $is_stringy ? realpath( (string) $template ) : null;
if (
is_string( $template ) &&
( str_ends_with( $template, '.php' ) || str_ends_with( $template, '.html' ) ) &&
is_file( $template ) &&
is_readable( $template )
) {
/**
* Fires immediately before including the template.
*
* @since 6.9.0
*
* @param string $template The path of the template about to be included.
*/
do_action( 'wp_before_include_template', $template );
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
}
return;
}
<?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/ooginoog_568/public/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/ooginoog_568/public/wp-blog-header.php"
| Key | Value |
| query_vars | array:2 [ "paged" => "7" "post_type" => "library_pt" ] |
| query_string | "paged=7&post_type=library_pt"
|
| request | "library/page/7"
|
| matched_rule | "library/page/([0-9]{1,})/?$"
|
| matched_query | "post_type=library_pt&paged=7"
|
| did_permalink | true
|
| Key | Value |
| query | array:2 [ "paged" => "7" "post_type" => "library_pt" ] |
| query_vars | array:10 [ "paged" => 7 "post_type" => "library_pt" "fields" => "all" "cache_results" => true "update_post_term_cache" => true "lazy_load_term_meta" => true "update_post_meta_cache" => true "posts_per_page" => 10 "comments_per_page" => "50" "order" => "DESC" ] |
| tax_query | WP_Tax_Query {#9964} |
| meta_query | WP_Meta_Query {#9970} |
| queried_object | WP_Post_Type {#8697} |
| request | """ SELECT SQL_CALC_FOUND_ROWS wp_posts.ID\n \t\t\t\t\t FROM wp_posts JOIN wp_icl_translations wpml_translations\n \t\t\t\t\t\t\tON wp_posts.ID = wpml_translations.element_id\n \t\t\t\t\t\t\t\tAND wpml_translations.element_type = CONCAT('post_', wp_posts.post_type) \n \t\t\t\t\t WHERE 1=1 AND ((wp_posts.post_type = 'library_pt' AND (wp_posts.post_status = 'publish' OR wp_posts.post_status = 'acf-disabled'))) AND ( ( ( wpml_translations.language_code = 'en' OR (\n \t\t\t\t\twpml_translations.language_code = 'nl'\n \t\t\t\t\tAND wp_posts.post_type IN ( 'post','page' )\n \t\t\t\t\tAND ( ( \n \t\t\t( SELECT COUNT(element_id)\n \t\t\t FROM wp_icl_translations\n \t\t\t WHERE trid = wpml_translations.trid\n \t\t\t AND language_code = 'en'\n \t\t\t) = 0\n \t\t\t ) OR ( \n \t\t\t( SELECT COUNT(element_id)\n \t\t\t\tFROM wp_icl_translations t2\n \t\t\t\tJOIN wp_posts p ON p.id = t2.element_id\n \t\t\t\tWHERE t2.trid = wpml_translations.trid\n \t\t\t\tAND t2.language_code = 'en'\n AND (\n p.post_status = 'publish' OR p.post_status = 'private' OR \n ( p.post_type='attachment' AND p.post_status = 'inherit' )\n )\n \t\t\t) = 0 ) ) \n \t\t\t\t) ) AND wp_posts.post_type IN ('post','page','attachment','wp_block','wp_template','wp_template_part','wp_navigation','agenda_pt','news_pt','library_pt','faq_pt' ) ) OR wp_posts.post_type NOT IN ('post','page','attachment','wp_block','wp_template','wp_template_part','wp_navigation','agenda_pt','news_pt','library_pt','faq_pt' ) )\n \t\t\t\t\t \n \t\t\t\t\t ORDER BY wp_posts.post_date DESC\n \t\t\t\t\t LIMIT 60, 10 """ |
| post_count | 10
|
| current_post | -1
|
| before_loop | true
|
| current_comment | -1
|
| found_posts | 100
|
| max_num_pages | 10
|
| is_archive | true
|
| is_paged | true
|
| is_post_type_archive | true
|
| Key | Value |
| ID | 6292
|
| post_author | "2"
|
| post_date | "2025-07-21 11:29:00"
|
| post_date_gmt | "2025-07-21 09:29:00"
|
| post_content | """ <!-- wp:post-date /--><!-- wp:heading -->\n <h2 class="wp-block-heading"><strong>Tony (69)</strong>:</h2>\n <!-- /wp:heading --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>“Early in the morning on November 9, 2022, I got up to go to the bathroom. It was still dark. I felt dizzy for a moment and then fell straight onto the countertop. The corner hit my left eye directly. Luckily, my girlfriend was home. I crawled back to bed, but my eye was bleeding heavily and I was in a lot of pain. She called 112. A short time later, I was at the hospital in Leeuwarden. The ophthalmologist said my retina had detached and that I needed surgery right away. Because of the blood, they couldn’t see how bad it was. I was referred to Groningen. A week later, we were told there: everything is damaged; this won’t heal. </p>\n <!-- /wp:paragraph --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>For a moment, I thought things might turn out all right after all, because I could still see a tiny edge of the image for just a second. But that disappeared. A few days later, the pain began. A sharp, nerve-wracking pain—which, according to the doctors, wasn’t even possible. I was given medication, but the side effects were severe. Eventually, I made the decision: the eye had to go. It turned black and would slowly wither away. I always wore an eye patch. After the surgery, I thought for a moment that the pain was gone. But that was because of the anesthesia. That awful nerve pain came back. </p>\n <!-- /wp:paragraph --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>I received injections at the pain clinic. They only helped for a very short time. It’s been two and a half years now, and I still have nerve pain. Sometimes it radiates throughout my entire head. It gets worse when I’m stressed. It was driving me to despair. I got help from a psychiatrist and was prescribed medication for depression. That helps me cope better. Music has also helped me: listening to it, playing it, keeping busy with it. And, of course, my girlfriend Uilkje. She took such good care of me during that first half-year after the accident. </p>\n <!-- /wp:paragraph --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>I feel a little stronger now. I’m biking again, driving, and going for walks. And I always wear safety goggles when I do DIY projects. I only have one eye left, and I take good care of it. The appearance of my prosthetic eye doesn’t bother me. It’s the pain—that’s what I find hard to live with. But I’m not giving up. I’ll keep hoping that things will get better someday.” </p>\n <!-- /wp:paragraph --><!-- wp:heading -->\n <h2 class="wp-block-heading"><strong>Uilkje (66)</strong>:</h2>\n <!-- /wp:heading --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>“I remember it exactly. When it happened, I immediately thought: this is really bad. White fluid and blood were coming out of Tony’s eye. It looked terrible. The first six months after the accident were the hardest. Tony was very depressed. He wouldn’t go to bed until 5:00 a.m. and wouldn’t get up until 5:00 p.m. I literally had to drag him out of bed. </p>\n <!-- /wp:paragraph --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>He had a dog, so sometimes he had to go out, but he didn't feel like doing anything. We didn’t live together. I lived in Amsterdam. But I had just stopped working, so I was able to spend a lot of time with him. Still, I was very worried. He was so gloomy. He couldn’t watch TV, drive a car, or even ride along as a passenger. All activities were too stimulating for him. </p>\n <!-- /wp:paragraph --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>I was afraid to leave him alone. Afraid he might hurt himself. Fortunately, he got help from a psychiatrist. He was prescribed antidepressants and antipsychotics. That really helped him. He’s now slowly tapering off those medications. And I’m seeing the old Tony come back. Only the nerve pain is still there. </p>\n <!-- /wp:paragraph --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>Tony got a really nice prosthetic eye. He looks great again. And I always felt like we’d get through this together. We’ve been together for seven years. I’m a nurse, so it felt natural to take care of him. I was glad I could do that. </p>\n <!-- /wp:paragraph --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>Things are going better now. Tony is pruning the trees in the garden again. He’s driving again. It’s nice to see that. Right after it happened, I thought, “This will never get better.” But of course, I didn’t say that. We’ve come out of this stronger together. And I’m proud of how far he’s come.” <strong><em><br/></em></strong></p>\n <!-- /wp:paragraph --> """ |
| post_title | ""I've lost my eye, but the pain remains""
|
| post_excerpt | "Tony and Uilkje have been together for about 10 years now. They don't live together. But luckily, Uilkje was nearby when Tony took a nasty fall. "
|
| post_status | "publish"
|
| comment_status | "closed"
|
| ping_status | "closed"
|
| post_password | "" |
| post_name | "ive-lost-my-eye-but-the-pain-remains"
|
| to_ping | "" |
| pinged | "" |
| post_modified | "2026-09-09 17:13:30"
|
| post_modified_gmt | "2026-09-09 15:13:30"
|
| post_content_filtered | "" |
| post_parent | 0
|
| guid | "https://ver-ooginoog.nl/bibliotheek/ive-lost-my-eye-but-the-pain-remains/"
|
| menu_order | 0
|
| post_type | "library_pt"
|
| post_mime_type | "" |
| comment_count | "0"
|
| filter | "raw"
|
| Key | Value |
| wp-wpml_current_language | "en"
|
| Key | Value |
| SERVER_SOFTWARE | "nginx/1.31.3"
|
| REQUEST_URI | "/en/library/page/7/"
|
| USER | "ooginoog"
|
| HOME | "/www/ooginoog_568"
|
| HTTP_X_FORWARDED_PROTO | "https"
|
| HTTP_CF_IPCOUNTRY | "US"
|
| HTTP_CF_WORKER | "kinsta.cloud"
|
| HTTP_KI_REQUEST_COLO | "185"
|
| HTTP_KI_BOT_CATEGORY | "aggressive_crawler"
|
| HTTP_KI_AI_CRAWLER | "yes"
|
| HTTP_KI_REALIP | "216.73.216.196"
|
| HTTP_X_KINSTA_EDGE_LB | "KCW"
|
| HTTP_X_KINSTA_EDGE_INCOMINGIP | "216.73.216.196"
|
| HTTP_CF_VISITOR | "{\"scheme\":\"https\"}"
|
| HTTP_KI_REQUEST_METAL | "96"
|
| HTTP_CF_DEVICE_TYPE | "desktop"
|
| HTTP_CF_CONNECTING_IP | "216.73.216.196"
|
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
| HTTP_ACCEPT | "*/*"
|
| HTTP_ACCEPT_ENCODING | "gzip, br"
|
| HTTP_CF_RAY | "a38933897ab0dfff-CMH"
|
| HTTP_KI_UA_LOWERCASED | "mozilla/5.0 applewebkit/537.36 (khtml, like gecko; compatible; claudebot/1.0; +claudebot@anthropic.com)"
|
| HTTP_KI_VBOT_CATEGORY | "AI Crawler"
|
| HTTP_CDN_LOOP | "cloudflare; loops=1; subreqs=1"
|
| HTTP_CF_EW_VIA | "15"
|
| HTTP_X_USE_CUSTOM_EC_TTL | "true"
|
| HTTP_X_FORWARDED_FOR | "216.73.216.196"
|
| SCRIPT_FILENAME | "/www/ooginoog_568/public/index.php"
|
| REDIRECT_STATUS | "200"
|
| WP_ENVIRONMENT_TYPE | "production"
|
| KINSTA_CACHE_ZONE | "KINSTAWP"
|
| SERVER_NAME | "ver-ooginoog.nl"
|
| SERVER_PORT | "443"
|
| SERVER_ADDR | "10.0.3.68"
|
| REMOTE_PORT | "" |
| REMOTE_ADDR | "216.73.216.196"
|
| GATEWAY_INTERFACE | "CGI/1.1"
|
| HTTP_HOST | "ver-ooginoog.nl"
|
| HTTPS | "on"
|
| SERVER_PROTOCOL | "HTTP/2.0"
|
| DOCUMENT_ROOT | "/www/ooginoog_568/public"
|
| DOCUMENT_URI | "/index.php"
|
| SCRIPT_NAME | "/index.php"
|
| CONTENT_LENGTH | "" |
| CONTENT_TYPE | "" |
| REQUEST_METHOD | "GET"
|
| QUERY_STRING | "" |
| FCGI_ROLE | "RESPONDER"
|
| PHP_SELF | "/index.php"
|
| REQUEST_TIME_FLOAT | 1788988453.9077
|
| REQUEST_TIME | 1788988453
|