->admin_asset_manager->enqueue_style( 'monorepo' ); $data = [ 'disabled' => ! \YoastSEO()->helpers->indexable->should_index_indexables(), 'amount' => \YoastSEO()->helpers->indexing->get_filtered_unindexed_count(), 'firstTime' => ( \YoastSEO()->helpers->indexing->is_initial_indexing() === true ), 'errorMessage' => '', 'restApi' => [ 'root' => \esc_url_raw( \rest_url() ), 'indexing_endpoints' => $this->get_endpoints(), 'nonce' => \wp_create_nonce( 'wp_rest' ), ], ]; /** * Filter: 'wpseo_indexing_data' Filter to adapt the data used in the indexing process. * * @param array $data The indexing data to adapt. */ $data = \apply_filters( 'wpseo_indexing_data', $data ); $this->admin_asset_manager->localize_script( 'indexation', 'yoastIndexingData', $data ); $person_id = $this->get_person_id(); $social_profiles = $this->get_social_profiles(); // This filter is documented in admin/views/tabs/metas/paper-content/general/knowledge-graph.php. $knowledge_graph_message = \apply_filters( 'wpseo_knowledge_graph_setting_msg', '' ); $finished_steps = $this->get_finished_steps(); $options = $this->get_company_or_person_options(); $selected_option_label = ''; $filtered_options = \array_filter( $options, function ( $item ) { return $item['value'] === $this->is_company_or_person(); } ); $selected_option = \reset( $filtered_options ); if ( \is_array( $selected_option ) ) { $selected_option_label = $selected_option['label']; } $data_ftc = [ 'canEditUser' => $this->can_edit_profile( $person_id ), 'companyOrPerson' => $this->is_company_or_person(), 'companyOrPersonLabel' => $selected_option_label, 'companyName' => $this->get_company_name(), 'fallbackCompanyName' => $this->get_fallback_company_name( $this->get_company_name() ), 'websiteName' => $this->get_website_name(), 'fallbackWebsiteName' => $this->get_fallback_website_name( $this->get_website_name() ), 'companyLogo' => $this->get_company_logo(), 'companyLogoFallback' => $this->get_company_fallback_logo( $this->get_company_logo() ), 'companyLogoId' => $this->get_person_logo_id(), 'finishedSteps' => $finished_steps, 'personId' => (int) $person_id, 'personName' => $this->get_person_name(), 'personLogo' => $this->get_person_logo(), 'personLogoFallback' => $this->get_person_fallback_logo( $this->get_person_logo() ), 'personLogoId' => $this->get_person_logo_id(), 'siteTagline' => $this->get_site_tagline(), 'socialProfiles' => [ 'facebookUrl' => $social_profiles['facebook_site'], 'twitterUsername' => $social_profiles['twitter_site'], 'otherSocialUrls' => $social_profiles['other_social_urls'], ], 'isPremium' => $this->product_helper->is_premium(), 'tracking' => $this->has_tracking_enabled(), 'isTrackingAllowedMultisite' => $this->is_tracking_enabled_multisite(), 'isMainSite' => $this->is_main_site(), 'companyOrPersonOptions' => $options, 'shouldForceCompany' => $this->should_force_company(), 'knowledgeGraphMessage' => $knowledge_graph_message, 'shortlinks' => [ 'gdpr' => $this->shortlinker->build_shortlink( 'https://yoa.st/gdpr-config-workout' ), 'configIndexables' => $this->shortlinker->build_shortlink( 'https://yoa.st/config-indexables' ), 'configIndexablesBenefits' => $this->shortlinker->build_shortlink( 'https://yoa.st/config-indexables-benefits' ), ], ]; $this->admin_asset_manager->localize_script( 'first-time-configuration', 'wpseoFirstTimeConfigurationData', $data_ftc ); } /** * Retrieves a list of the endpoints to use. * * @return array The endpoints. */ protected function get_endpoints() { $endpoints = [ 'prepare' => Indexing_Route::FULL_PREPARE_ROUTE, 'terms' => Indexing_Route::FULL_TERMS_ROUTE, 'posts' => Indexing_Route::FULL_POSTS_ROUTE, 'archives' => Indexing_Route::FULL_POST_TYPE_ARCHIVES_ROUTE, 'general' => Indexing_Route::FULL_GENERAL_ROUTE, 'indexablesComplete' => Indexing_Route::FULL_INDEXABLES_COMPLETE_ROUTE, 'post_link' => Indexing_Route::FULL_POST_LINKS_INDEXING_ROUTE, 'term_link' => Indexing_Route::FULL_TERM_LINKS_INDEXING_ROUTE, ]; $endpoints = \apply_filters( 'wpseo_indexing_endpoints', $endpoints ); $endpoints['complete'] = Indexing_Route::FULL_COMPLETE_ROUTE; return $endpoints; } // ** Private functions ** // /** * Returns the finished steps array. * * @return array An array with the finished steps. */ private function get_finished_steps() { return $this->options_helper->get( 'configuration_finished_steps', [] ); } /** * Returns the entity represented by the site. * * @return string The entity represented by the site. */ private function is_company_or_person() { return $this->options_helper->get( 'company_or_person', '' ); } /** * Gets the company name from the option in the database. * * @return string The company name. */ private function get_company_name() { return $this->options_helper->get( 'company_name', '' ); } /** * Gets the fallback company name from the option in the database if there is no company name. * * @param string $company_name The given company name by the user, default empty string. * * @return string|false The company name. */ private function get_fallback_company_name( $company_name ) { if ( $company_name ) { return false; } return \get_bloginfo( 'name' ); } /** * Gets the website name from the option in the database. * * @return string The website name. */ private function get_website_name() { return $this->options_helper->get( 'website_name', '' ); } /** * Gets the fallback website name from the option in the database if there is no website name. * * @param string $website_name The given website name by the user, default empty string. * * @return string|false The website name. */ private function get_fallback_website_name( $website_name ) { if ( $website_name ) { return false; } return \get_bloginfo( 'name' ); } /** * Gets the company logo from the option in the database. * * @return string The company logo. */ private function get_company_logo() { return $this->options_helper->get( 'company_logo', '' ); } /** * Gets the company logo id from the option in the database. * * @return string The company logo id. */ private function get_company_logo_id() { return $this->options_helper->get( 'company_logo_id', '' ); } /** * Gets the company logo url from the option in the database. * * @param string $company_logo The given company logo by the user, default empty. * * @return string|false The company logo URL. */ private function get_company_fallback_logo( $company_logo ) { if ( $company_logo ) { return false; } $logo_id = $this->meta_tags_context->fallback_to_site_logo(); return \esc_url( \wp_get_attachment_url( $logo_id ) ); } /** * Gets the person id from the option in the database. * * @return int|null The person id, null if empty. */ private function get_person_id() { return $this->options_helper->get( 'company_or_person_user_id' ); } /** * Gets the person id from the option in the database. * * @return int|null The person id, null if empty. */ private function get_person_name() { $user = \get_userdata( $this->get_person_id() ); if ( $user instanceof WP_User ) { return $user->get( 'display_name' ); } return ''; } /** * Gets the person avatar from the option in the database. * * @return string The person logo. */ private function get_person_logo() { return $this->options_helper->get( 'person_logo', '' ); } /** * Gets the person logo url from the option in the database. * * @param string $person_logo The given person logo by the user, default empty. * * @return string|false The person logo URL. */ private function get_person_fallback_logo( $person_logo ) { if ( $person_logo ) { return false; } $logo_id = $this->meta_tags_context->fallback_to_site_logo(); return \esc_url( \wp_get_attachment_url( $logo_id ) ); } /** * Gets the person logo id from the option in the database. * * @return string The person logo id. */ private function get_person_logo_id() { return $this->options_helper->get( 'person_logo_id', '' ); } /** * Gets the site tagline. * * @return string The site tagline. */ private function get_site_tagline() { return \get_bloginfo( 'description' ); } /** * Gets the social profiles stored in the database. * * @return string[] The social profiles. */ private function get_social_profiles() { return $this->social_profiles_helper->get_organization_social_profiles(); } /** * Checks whether tracking is enabled. * * @return bool True if tracking is enabled, false otherwise, null if in Free and conf. workout step not finished. */ private function has_tracking_enabled() { $default = false; if ( $this->product_helper->is_premium() ) { $default = true; } return $this->options_helper->get( 'tracking', $default ); } /** * Checks whether tracking option is allowed at network level. * * @return bool True if option change is allowed, false otherwise. */ private function is_tracking_enabled_multisite() { $default = true; if ( ! \is_multisite() ) { return $default; } return $this->options_helper->get( 'allow_tracking', $default ); } /** * Checks whether we are in a main site. * * @return bool True if it's the main site or a single site, false if it's a subsite. */ private function is_main_site() { return \is_main_site(); } /** * Gets the options for the Company or Person select. * Returns only the company option if it is forced (by Local SEO), otherwise returns company and person option. * * @return array The options for the company-or-person select. */ private function get_company_or_person_options() { $options = [ [ 'label' => \__( 'Organization', 'wordpress-seo' ), 'value' => 'company', 'id' => 'company', ], [ 'label' => \__( 'Person', 'wordpress-seo' ), 'value' => 'person', 'id' => 'person', ], ]; if ( $this->should_force_company() ) { $options = [ [ 'label' => \__( 'Organization', 'wordpress-seo' ), 'value' => 'company', 'id' => 'company', ], ]; } return $options; } /** * Checks whether we should force "Organization". * * @return bool */ private function should_force_company() { return $this->addon_manager->is_installed( WPSEO_Addon_Manager::LOCAL_SLUG ); } /** * Checks if the current user has the capability to edit a specific user. * * @param int $person_id The id of the person to edit. * * @return bool */ private function can_edit_profile( $person_id ) { return \current_user_can( 'edit_user', $person_id ); } } {"id":6904,"date":"2023-07-28T09:53:29","date_gmt":"2023-07-28T08:53:29","guid":{"rendered":"https:\/\/justeinfos.net\/?p=6904"},"modified":"2023-07-28T09:55:11","modified_gmt":"2023-07-28T08:55:11","slug":"elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra","status":"publish","type":"post","link":"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/","title":{"rendered":"\u00c9lections r\u00e9gionales: Dj\u00e9dj\u00e9 Mady et St\u00e9phane Kipr\u00e9 rencontrent les chefs du Haut-Sassandra"},"content":{"rendered":"

L’ambiance \u00e9tait aux couleurs des Elections r\u00e9gionales dans l’apr\u00e8s-midi du vendredi 21 juillet 2023, dans la salle des f\u00eates de la Mairie de la ville d’Issia. En effet, c’est ce jour-l\u00e0, que Prof Alphonse Dj\u00e9dj\u00e9 Mady et le Vice-pr\u00e9sident du PPACI, St\u00e9phane Kipr\u00e9 ont choisi pour conduire une forte d\u00e9l\u00e9gation \u00e0 Issia, en vue de rencontrer les chefs traditionnels ou t\u00eates couronn\u00e9es.<\/p>\n

\"\"<\/a>
Les chefs d’Issia ont re\u00e7u les candidats du Pdci-Rda et PPACI aux \u00e9lections r\u00e9gionales dans le Haut-Sassandra.<\/figcaption><\/figure>\n

Lire aussi:\u00a0https:\/\/fr.yahoo.com\/news\/apr%C3%A8s-hospitalisation-urgence-madonna-fait-044202580.html<\/a><\/p>\n

Cette rencontre qui se situait dans le cadre des prochaines Elections r\u00e9gionales avait pour objectif\u00a0 pour les candidats Alphonse Dj\u00e9dj\u00e9 Mady et St\u00e9phane Kipr\u00e9 de lancer la pr\u00e9sentation de l’Alliance PDCI-RDA-PPACI pour les prochaines Elections r\u00e9gionales pr\u00e9vues dans le mois de septembre 2023 en terre ivoirienne. A cet effet, un expos\u00e9 de motivation de leur union a \u00e9t\u00e9\u00a0 expliqu\u00e9 en long et en large aux h\u00f4tes du jour.\u00a0Les deux candidats du PDCI-RDA et du PPACI ont vivement \u00e9t\u00e9 f\u00e9licit\u00e9s par leurs invit\u00e9s.<\/p>\n

Pour la circonstance, les chefs pr\u00e9sents \u00e0 cette rencontre, ne sont pas all\u00e9s avec le dos de la cuill\u00e8re pour apporter leur b\u00e9n\u00e9diction \u00e0 cette union, tout en promettant d’aller vers leurs diff\u00e9rentes communaut\u00e9s pour leur annoncer la bonne nouvelle.<\/p>\n

Lire aussi:\u00a0https:\/\/justeinfos.net\/tourisme-ce-que-pass-touristique-va-apporter-a-la-cote-divoire\/<\/a><\/p>\n

Prof Alphonse Dj\u00e9dj\u00e9, pour clore cette pr\u00e9sentation, a invit\u00e9 toute la population d’Issia \u00e0 un tr\u00e8s grand meeting qui s\u2019est tenu le samedi 22 juillet 2023 au stade situ\u00e9 derri\u00e8re la salle des f\u00eates. C’est dans une ambiance fraternelle, conviviale et chaleureuse que cette rencontre avec les traditionnels d\u2019Issia a pris fin.<\/p>\n

Donatien Zean<\/p>\n

 <\/p>\n","protected":false},"excerpt":{"rendered":"

L’ambiance \u00e9tait aux couleurs des Elections r\u00e9gionales dans l’apr\u00e8s-midi du vendredi 21 juillet 2023, dans la salle des f\u00eates de la Mairie de la ville d’Issia. En effet, c’est ce jour-l\u00e0, que Prof Alphonse Dj\u00e9dj\u00e9 Mady et le Vice-pr\u00e9sident du PPACI, St\u00e9phane Kipr\u00e9 ont choisi pour conduire une forte d\u00e9l\u00e9gation \u00e0 Issia, en vue de […]<\/p>\n","protected":false},"author":1,"featured_media":6905,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[668],"tags":[2003,2002,1729,752,1728],"class_list":["post-6904","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ji-politique-inter","tag-chefs-dissia","tag-djedje-mady","tag-elections-regionales","tag-haut-sassandra","tag-stephane-kipre"],"acf":[],"aioseo_notices":[],"yoast_head":"\n\u00c9lections r\u00e9gionales: Mady et St\u00e9phane Kipr\u00e9 rencontrent les chefs<\/title>\n<meta name=\"description\" content=\"Dans le cadre des \u00e9lections r\u00e9gionales dans le Haut-Sassandra, les candidats Dj\u00e9dj\u00e9 Mady et St\u00e9phane Kipr\u00e9 ont rencontr\u00e9 les chefs d'Issia.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u00c9lections r\u00e9gionales: Mady et St\u00e9phane Kipr\u00e9 rencontrent les chefs\" \/>\n<meta property=\"og:description\" content=\"Dans le cadre des \u00e9lections r\u00e9gionales dans le Haut-Sassandra, les candidats Dj\u00e9dj\u00e9 Mady et St\u00e9phane Kipr\u00e9 ont rencontr\u00e9 les chefs d'Issia.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/\" \/>\n<meta property=\"og:site_name\" content=\"JusteInfos- Information g\u00e9n\u00e9rale\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-28T08:53:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-28T08:55:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/justeinfos.net\/wp-content\/uploads\/2023\/07\/Elections-locales-dans-le-cavally-anne-ouloto-appelle-a-des-elections-sans-heurts-2.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"850\" \/>\n\t<meta property=\"og:image:height\" content=\"467\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Benoit Kadjo\" \/>\n<meta name=\"twitter:label1\" content=\"\u00c9crit par\" \/>\n\t<meta name=\"twitter:data1\" content=\"Benoit Kadjo\" \/>\n\t<meta name=\"twitter:label2\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/\",\"url\":\"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/\",\"name\":\"\u00c9lections r\u00e9gionales: Mady et St\u00e9phane Kipr\u00e9 rencontrent les chefs\",\"isPartOf\":{\"@id\":\"https:\/\/justeinfos.net\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/justeinfos.net\/wp-content\/uploads\/2023\/07\/Elections-locales-dans-le-cavally-anne-ouloto-appelle-a-des-elections-sans-heurts-2.jpg\",\"datePublished\":\"2023-07-28T08:53:29+00:00\",\"dateModified\":\"2023-07-28T08:55:11+00:00\",\"author\":{\"@id\":\"https:\/\/justeinfos.net\/#\/schema\/person\/77a4a54746e7c6eece2474c96338c6d0\"},\"description\":\"Dans le cadre des \u00e9lections r\u00e9gionales dans le Haut-Sassandra, les candidats Dj\u00e9dj\u00e9 Mady et St\u00e9phane Kipr\u00e9 ont rencontr\u00e9 les chefs d'Issia.\",\"breadcrumb\":{\"@id\":\"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/#primaryimage\",\"url\":\"https:\/\/justeinfos.net\/wp-content\/uploads\/2023\/07\/Elections-locales-dans-le-cavally-anne-ouloto-appelle-a-des-elections-sans-heurts-2.jpg\",\"contentUrl\":\"https:\/\/justeinfos.net\/wp-content\/uploads\/2023\/07\/Elections-locales-dans-le-cavally-anne-ouloto-appelle-a-des-elections-sans-heurts-2.jpg\",\"width\":850,\"height\":467,\"caption\":\"Les candidats Alphonse Dj\u00e9dj\u00e9 Mady du Pdci-Rda et St\u00e9phane Kipr\u00e9 du PPACI aux \u00e9lections r\u00e9gionales dans le Haut-Sassandra ont rencontr\u00e9 les chefs traditionnels d'Issia.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/justeinfos.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u00c9lections r\u00e9gionales: Dj\u00e9dj\u00e9 Mady et St\u00e9phane Kipr\u00e9 rencontrent les chefs du Haut-Sassandra\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/justeinfos.net\/#website\",\"url\":\"https:\/\/justeinfos.net\/\",\"name\":\"JusteInfos- Information g\u00e9n\u00e9rale\",\"description\":\"L'Information-Juste M\u00e9sur\u00e9e ett Sans Passion\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/justeinfos.net\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/justeinfos.net\/#\/schema\/person\/77a4a54746e7c6eece2474c96338c6d0\",\"name\":\"Benoit Kadjo\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/justeinfos.net\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c140197d9f8a72c4cbdc230a52570b49?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c140197d9f8a72c4cbdc230a52570b49?s=96&d=mm&r=g\",\"caption\":\"Benoit Kadjo\"},\"url\":\"https:\/\/justeinfos.net\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u00c9lections r\u00e9gionales: Mady et St\u00e9phane Kipr\u00e9 rencontrent les chefs","description":"Dans le cadre des \u00e9lections r\u00e9gionales dans le Haut-Sassandra, les candidats Dj\u00e9dj\u00e9 Mady et St\u00e9phane Kipr\u00e9 ont rencontr\u00e9 les chefs d'Issia.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/","og_locale":"fr_FR","og_type":"article","og_title":"\u00c9lections r\u00e9gionales: Mady et St\u00e9phane Kipr\u00e9 rencontrent les chefs","og_description":"Dans le cadre des \u00e9lections r\u00e9gionales dans le Haut-Sassandra, les candidats Dj\u00e9dj\u00e9 Mady et St\u00e9phane Kipr\u00e9 ont rencontr\u00e9 les chefs d'Issia.","og_url":"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/","og_site_name":"JusteInfos- Information g\u00e9n\u00e9rale","article_published_time":"2023-07-28T08:53:29+00:00","article_modified_time":"2023-07-28T08:55:11+00:00","og_image":[{"width":850,"height":467,"url":"https:\/\/justeinfos.net\/wp-content\/uploads\/2023\/07\/Elections-locales-dans-le-cavally-anne-ouloto-appelle-a-des-elections-sans-heurts-2.jpg","type":"image\/jpeg"}],"author":"Benoit Kadjo","twitter_misc":{"\u00c9crit par":"Benoit Kadjo","Dur\u00e9e de lecture estim\u00e9e":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/","url":"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/","name":"\u00c9lections r\u00e9gionales: Mady et St\u00e9phane Kipr\u00e9 rencontrent les chefs","isPartOf":{"@id":"https:\/\/justeinfos.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/#primaryimage"},"image":{"@id":"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/#primaryimage"},"thumbnailUrl":"https:\/\/justeinfos.net\/wp-content\/uploads\/2023\/07\/Elections-locales-dans-le-cavally-anne-ouloto-appelle-a-des-elections-sans-heurts-2.jpg","datePublished":"2023-07-28T08:53:29+00:00","dateModified":"2023-07-28T08:55:11+00:00","author":{"@id":"https:\/\/justeinfos.net\/#\/schema\/person\/77a4a54746e7c6eece2474c96338c6d0"},"description":"Dans le cadre des \u00e9lections r\u00e9gionales dans le Haut-Sassandra, les candidats Dj\u00e9dj\u00e9 Mady et St\u00e9phane Kipr\u00e9 ont rencontr\u00e9 les chefs d'Issia.","breadcrumb":{"@id":"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/#primaryimage","url":"https:\/\/justeinfos.net\/wp-content\/uploads\/2023\/07\/Elections-locales-dans-le-cavally-anne-ouloto-appelle-a-des-elections-sans-heurts-2.jpg","contentUrl":"https:\/\/justeinfos.net\/wp-content\/uploads\/2023\/07\/Elections-locales-dans-le-cavally-anne-ouloto-appelle-a-des-elections-sans-heurts-2.jpg","width":850,"height":467,"caption":"Les candidats Alphonse Dj\u00e9dj\u00e9 Mady du Pdci-Rda et St\u00e9phane Kipr\u00e9 du PPACI aux \u00e9lections r\u00e9gionales dans le Haut-Sassandra ont rencontr\u00e9 les chefs traditionnels d'Issia."},{"@type":"BreadcrumbList","@id":"https:\/\/justeinfos.net\/elections-regionales-djedje-mady-et-stephane-kipre-rencontrent-les-chefs-du-haut-sassandra\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/justeinfos.net\/"},{"@type":"ListItem","position":2,"name":"\u00c9lections r\u00e9gionales: Dj\u00e9dj\u00e9 Mady et St\u00e9phane Kipr\u00e9 rencontrent les chefs du Haut-Sassandra"}]},{"@type":"WebSite","@id":"https:\/\/justeinfos.net\/#website","url":"https:\/\/justeinfos.net\/","name":"JusteInfos- Information g\u00e9n\u00e9rale","description":"L'Information-Juste M\u00e9sur\u00e9e ett Sans Passion","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/justeinfos.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Person","@id":"https:\/\/justeinfos.net\/#\/schema\/person\/77a4a54746e7c6eece2474c96338c6d0","name":"Benoit Kadjo","image":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/justeinfos.net\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c140197d9f8a72c4cbdc230a52570b49?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c140197d9f8a72c4cbdc230a52570b49?s=96&d=mm&r=g","caption":"Benoit Kadjo"},"url":"https:\/\/justeinfos.net\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/justeinfos.net\/wp-json\/wp\/v2\/posts\/6904","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/justeinfos.net\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/justeinfos.net\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/justeinfos.net\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/justeinfos.net\/wp-json\/wp\/v2\/comments?post=6904"}],"version-history":[{"count":0,"href":"https:\/\/justeinfos.net\/wp-json\/wp\/v2\/posts\/6904\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/justeinfos.net\/wp-json\/wp\/v2\/media\/6905"}],"wp:attachment":[{"href":"https:\/\/justeinfos.net\/wp-json\/wp\/v2\/media?parent=6904"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/justeinfos.net\/wp-json\/wp\/v2\/categories?post=6904"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/justeinfos.net\/wp-json\/wp\/v2\/tags?post=6904"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}