Camille Lou Biography: Facebook, Age, Height, Net Worth, Parents, Boyfriend, Songs, Movies & TV Shows, Awards
Camille Houssière also known as Camille Lou is a French actress, singer, and musician best known for starring in the…
/** * TheCityCeleb — centralized date-display logic * Single source of truth for which post types/categories show * real publish dates vs. faked current-time dates. * Used by both schema output (Yoast) and the single.php template. */ // Categories that show REAL publish/modified dates everywhere function tcc_real_date_categories() { return array( 'business', 'editorial', 'goals', 'movie', 'cast', 'lyrics', 'blog', 'battle-rap', 'review', 'sponsored', 'branded', 'story', 'article' ); } // Static/evergreen pages: dates stripped entirely from schema (slugs) function tcc_evergreen_slugs() { return array( 'about-us', 'contact-us', 'meet-our-team', 'privacy-policy', 'professions', 'report-infringement', 'bio-submission', 'terms-of-service', 'editorial-standards' ); } // Static/evergreen pages: dates stripped entirely from schema (IDs) function tcc_evergreen_ids() { return array( 661274, 661308, 661384 ); } // Daily-updated pages: dateModified forced to "now" + no-cache headers function tcc_daily_page_ids() { return array( 664488, 664495, 664491 ); } /** * Single check used by both the schema filter and the template: * does this post show its real publish date? */ function tcc_post_shows_real_date( $post_id = null ) { if ( ! $post_id ) { $post_id = get_the_ID(); if ( ! $post_id && is_singular() ) { global $post; if ( isset( $post->ID ) ) { $post_id = $post->ID; } } } if ( ! $post_id ) { return false; } return has_category( tcc_real_date_categories(), $post_id ); } /** * 1. Schema filter: handle dates by page type */ add_filter( 'wpseo_schema_article', 'tcc_schema_date_handler', 20, 2 ); add_filter( 'wpseo_schema_webpage', 'tcc_schema_date_handler', 20, 2 ); function tcc_schema_date_handler( $data, $context ) { // DAILY pages: force fresh dateModified if ( is_page( tcc_daily_page_ids() ) ) { if ( isset( $data['dateModified'] ) ) { $data['dateModified'] = current_time( 'c', true ); } return $data; } // EVERGREEN pages: strip dates entirely if ( is_page( tcc_evergreen_slugs() ) || is_page( tcc_evergreen_ids() ) ) { unset( $data['datePublished'] ); unset( $data['dateModified'] ); return $data; } // Everything else: strip dates unless it's a real-date category if ( ! tcc_post_shows_real_date() ) { unset( $data['datePublished'] ); unset( $data['dateModified'] ); } return $data; } /** * 2. No-cache headers ONLY for daily-updated pages */ add_action( 'template_redirect', 'tcc_prevent_daily_caching' ); function tcc_prevent_daily_caching() { if ( is_page( tcc_daily_page_ids() ) ) { header( 'Cache-Control: no-cache, no-store, must-revalidate, max-age=0' ); header( 'Pragma: no-cache' ); header( 'Expires: Wed, 11 Jan 1984 05:00:00 GMT' ); } }
The Private Lives Of Public Figures
Camille Houssière also known as Camille Lou is a French actress, singer, and musician best known for starring in the…