<?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" => "3" "post_type" => "library_pt" ] |
| query_string | "paged=3&post_type=library_pt"
|
| request | "library/page/3"
|
| matched_rule | "library/page/([0-9]{1,})/?$"
|
| matched_query | "post_type=library_pt&paged=3"
|
| did_permalink | true
|
| Key | Value |
| query | array:2 [ "paged" => "3" "post_type" => "library_pt" ] |
| query_vars | array:10 [ "paged" => 3 "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 {#9960} |
| meta_query | WP_Meta_Query {#9966} |
| 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 20, 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 | 6222
|
| post_author | "2"
|
| post_date | "2026-02-26 17:27:25"
|
| post_date_gmt | "2026-02-26 16:27:25"
|
| post_content | """ <!-- wp:post-date {"datetime":"2025-11-06T17:26:00"} /--><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p><strong>Name:</strong> Soraya <br/><strong>Age:</strong> 47<br/><strong>City:</strong> Belgium<br/><strong>Condition:</strong> retinoblastoma</p>\n <!-- /wp:paragraph --><!-- wp:heading {"translatedWithWPMLTM":"1"} -->\n <h2 class="wp-block-heading"><strong>Who are you?</strong></h2>\n <!-- /wp:heading --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>I have four children and two grandsons. Unfortunately, my first husband passed away shortly after the birth of our youngest daughter; I later remarried Wim. Together with my husband, I run a construction company. I go line dancing one evening a week. I also volunteer with the patient organization Spierziekten Vlaanderen and the Red Cross. </p>\n <!-- /wp:paragraph --><!-- wp:heading {"translatedWithWPMLTM":"1"} -->\n <h2 class="wp-block-heading"><strong>Why can you only see out of one eye?</strong></h2>\n <!-- /wp:heading --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>At a very young age, I was diagnosed with a retinal blastoma in my right eye. I was a year and a half old. I’ve had a prosthetic eye ever since. From what I’ve always been told, not much was known about this disease back then. My eye was removed immediately. I didn’t undergo any chemotherapy or radiation treatment at the time. </p>\n <!-- /wp:paragraph --><!-- wp:heading {"translatedWithWPMLTM":"1"} -->\n <h2 class="wp-block-heading"><strong>How do you like the ocular prosthesis?</strong></h2>\n <!-- /wp:heading --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>Of course, I’m used to it. I don’t know what it’s like to be able to see with two eyes. My ocular prosthesis comes from an ocularist in Germany, the Institut Trester. I’ve always tolerated the glass prosthesis fairly well. I also call it my personal “barometer.” I always know a few days in advance that I’m going to get sick. That’s when I get an infection behind the prosthesis, with green pus. Once the illness or virus has taken hold, the inflammation goes away immediately. Another thing I find strange about the prosthesis is that when, for example, there’s a candle on the table at a restaurant, my prosthesis reacts to it quite quickly—it starts to irritate me right away. So I always blow out the candle right away when I arrive. I also notice it when I work on my laptop or tablet for a long time without my glasses. I think my prosthesis itself is very beautiful. It never ceases to amaze me how skillfully the ocularist crafts it and how identical the color is to my own eye. </p>\n <!-- /wp:paragraph --><!-- wp:heading {"translatedWithWPMLTM":"1"} -->\n <h2 class="wp-block-heading"><strong>That sounds like you're really happy about it?</strong></h2>\n <!-- /wp:heading --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>That’s not really true. I still find it hard to deal with having an eye prosthesis. I was bullied a lot when I was younger because of my eye prosthesis. That really took a toll on me. For example, I really like it when the sun is shining, because then I can put on sunglasses and nobody can see it. </p>\n <!-- /wp:paragraph --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>I still find it really uncomfortable to talk to people who look me straight in the eyes. My prosthetic eye also doesn’t move with my eyes—it only moves a tiny bit. I’m still embarrassed by that. Especially when I’m tired, the difference is very noticeable. My eyes don’t open to the same extent anymore. </p>\n <!-- /wp:paragraph --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>Or when people take photos of me, I always want to see the photos first before they’re allowed to use them. I always check my eyes. Sometimes photos really have to be retaken a lot of times before I’m satisfied with the result. That’s why I find the photo for this interview the hardest part. </p>\n <!-- /wp:paragraph --><!-- wp:heading {"translatedWithWPMLTM":"1"} -->\n <h2 class="wp-block-heading"><strong>How are you doing now?</strong></h2>\n <!-- /wp:heading --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>Things are going pretty well, though the shame will never go away. In recent years, my good eye has also been getting worse. It gets tired very quickly, and I have trouble focusing because of another condition. That does worry me. I often think about the future—what if I’m old and can no longer put my prosthetic eye in or take it out by myself? Will it become even more noticeable as I get older? </p>\n <!-- /wp:paragraph --><!-- wp:heading {"translatedWithWPMLTM":"1"} -->\n <h2 class="wp-block-heading"><strong>Why did you become a member of the OOG in OOG Association? </strong></h2>\n <!-- /wp:heading --><!-- wp:paragraph {"translatedWithWPMLTM":"1"} -->\n <p>I happened to discover the organization on social media. I was looking for information about a prosthesis that can move with me. I was surprised by the information and the stories from others in the same situation on the site. It’s a shame I’ve had to miss out on this my whole life. That’s why I became a member right away. </p>\n <!-- /wp:paragraph --> """ |
| post_title | "“The shame remains”"
|
| post_excerpt | "Meet Soraya from Flanders."
|
| post_status | "publish"
|
| comment_status | "closed"
|
| ping_status | "closed"
|
| post_password | "" |
| post_name | "the-shame-remains"
|
| to_ping | "" |
| pinged | "" |
| post_modified | "2026-09-09 17:08:58"
|
| post_modified_gmt | "2026-09-09 15:08:58"
|
| post_content_filtered | "" |
| post_parent | 0
|
| guid | "https://ver-ooginoog.nl/bibliotheek/the-shame-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/3/"
|
| USER | "ooginoog"
|
| HOME | "/www/ooginoog_568"
|
| HTTP_X_FORWARDED_PROTO | "https"
|
| HTTP_CF_IPCOUNTRY | "US"
|
| HTTP_CF_WORKER | "kinsta.cloud"
|
| HTTP_KI_REQUEST_COLO | "1042"
|
| 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 | "113"
|
| 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 | "a3880bc70e6297fe-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 | 1788976339.9338
|
| REQUEST_TIME | 1788976339
|