ly. Default OBJECT. * @return WP_Term|array|WP_Error|null Type is based on $output value. */ function get_category_by_path( $category_path, $full_match = true, $output = OBJECT ) { $category_path = rawurlencode( urldecode( $category_path ) ); $category_path = str_replace( '%2F', '/', $category_path ); $category_path = str_replace( '%20', ' ', $category_path ); $category_paths = '/' . trim( $category_path, '/' ); $leaf_path = sanitize_title( basename( $category_paths ) ); $category_paths = explode( '/', $category_paths ); $full_path = ''; foreach ( (array) $category_paths as $pathdir ) { $full_path .= ( '' !== $pathdir ? '/' : '' ) . sanitize_title( $pathdir ); } $categories = get_terms( array( 'taxonomy' => 'category', 'get' => 'all', 'slug' => $leaf_path, ) ); if ( empty( $categories ) ) { return; } foreach ( $categories as $category ) { $path = '/' . $leaf_path; $curcategory = $category; while ( ( 0 !== $curcategory->parent ) && ( $curcategory->parent !== $curcategory->term_id ) ) { $curcategory = get_term( $curcategory->parent, 'category' ); if ( is_wp_error( $curcategory ) ) { return $curcategory; } $path = '/' . $curcategory->slug . $path; } if ( $path === $full_path ) { $category = get_term( $category->term_id, 'category', $output ); _make_cat_compat( $category ); return $category; } } // If full matching is not required, return the first cat that matches the leaf. if ( ! $full_match ) { $category = get_term( reset( $categories )->term_id, 'category', $output ); _make_cat_compat( $category ); return $category; } } /** * Retrieves a category object by category slug. * * @since 2.3.0 * * @param string $slug The category slug. * @return object|false Category data object on success, false if not found. */ function get_category_by_slug( $slug ) { $category = get_term_by( 'slug', $slug, 'category' ); if ( $category ) { _make_cat_compat( $category ); } return $category; } /** * Retrieves the ID of a category from its name. * * @since 1.0.0 * * @param string $cat_name Category name. * @return int Category ID on success, 0 if the category doesn't exist. */ function get_cat_ID( $cat_name ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid $cat = get_term_by( 'name', $cat_name, 'category' ); if ( $cat ) { return $cat->term_id; } return 0; } /** * Retrieves the name of a category from its ID. * * @since 1.0.0 * * @param int $cat_id Category ID. * @return string Category name, or an empty string if the category doesn't exist. */ function get_cat_name( $cat_id ) { $cat_id = (int) $cat_id; $category = get_term( $cat_id, 'category' ); if ( ! $category || is_wp_error( $category ) ) { return ''; } return $category->name; } /** * Checks if a category is an ancestor of another category. * * You can use either an ID or the category object for both parameters. * If you use an integer, the category will be retrieved. * * @since 2.1.0 * * @param int|object $cat1 ID or object to check if this is the parent category. * @param int|object $cat2 The child category. * @return bool Whether $cat2 is child of $cat1. */ function cat_is_ancestor_of( $cat1, $cat2 ) { return term_is_ancestor_of( $cat1, $cat2, 'category' ); } /** * Sanitizes category data based on context. * * @since 2.3.0 * * @param object|array $category Category data. * @param string $context Optional. Default 'display'. * @return object|array Same type as $category with sanitized data for safe use. */ function sanitize_category( $category, $context = 'display' ) { return sanitize_term( $category, 'category', $context ); } /** * Sanitizes data in single category key field. * * @since 2.3.0 * * @param string $field Category key to sanitize. * @param mixed $value Category value to sanitize. * @param int $cat_id Category ID. * @param string $context What filter to use, 'raw', 'display', etc. * @return mixed Value after $value has been sanitized. */ function sanitize_category_field( $field, $value, $cat_id, $context ) { return sanitize_term_field( $field, $value, $cat_id, 'category', $context ); } /* Tags */ /** * Retrieves all post tags. * * @since 2.3.0 * * @param string|array $args { * Optional. Arguments to retrieve tags. See get_terms() for additional options. * * @type string $taxonomy Taxonomy to retrieve terms for. Default 'post_tag'. * } * @return WP_Term[]|int|WP_Error Array of 'post_tag' term objects, a count thereof, * or WP_Error if any of the taxonomies do not exist. */ function get_tags( $args = '' ) { $defaults = array( 'taxonomy' => 'post_tag' ); $args = wp_parse_args( $args, $defaults ); $tags = get_terms( $args ); if ( empty( $tags ) ) { $tags = array(); } else { /** * Filters the array of term objects returned for the 'post_tag' taxonomy. * * @since 2.3.0 * * @param WP_Term[]|int|WP_Error $tags Array of 'post_tag' term objects, a count thereof, * or WP_Error if any of the taxonomies do not exist. * @param array $args An array of arguments. See {@see get_terms()}. */ $tags = apply_filters( 'get_tags', $tags, $args ); } return $tags; } /** * Retrieves a post tag by tag ID or tag object. * * If you pass the $tag parameter an object, which is assumed to be the tag row * object retrieved from the database, it will cache the tag data. * * If you pass $tag an integer of the tag ID, then that tag will be retrieved * from the database, if it isn't already cached, and passed back. * * If you look at get_term(), both types will be passed through several filters * and finally sanitized based on the $filter parameter value. * * @since 2.3.0 * * @param int|WP_Term|object $tag A tag ID or object. * @param string $output Optional. The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which * correspond to a WP_Term object, an associative array, or a numeric array, * respectively. Default OBJECT. * @param string $filter Optional. How to sanitize tag fields. Default 'raw'. * @return WP_Term|array|WP_Error|null Tag data in type defined by $output parameter. * WP_Error if $tag is empty, null if it does not exist. */ function get_tag( $tag, $output = OBJECT, $filter = 'raw' ) { return get_term( $tag, 'post_tag', $output, $filter ); } /* Cache */ /** * Removes the category cache data based on ID. * * @since 2.1.0 * * @param int $id Category ID */ function clean_category_cache( $id ) { clean_term_cache( $id, 'category' ); } /** * Updates category structure to old pre-2.3 from new taxonomy structure. * * This function was added for the taxonomy support to update the new category * structure with the old category one. This will maintain compatibility with * plugins and themes which depend on the old key or property names. * * The parameter should only be passed a variable and not create the array or * object inline to the parameter. The reason for this is that parameter is * passed by reference and PHP will fail unless it has the variable. * * There is no return value, because everything is updated on the variable you * pass to it. This is one of the features with using pass by reference in PHP. * * @since 2.3.0 * @since 4.4.0 The `$category` parameter now also accepts a WP_Term object. * @access private * * @param array|object|WP_Term $category Category row object or array. */ function _make_cat_compat( &$category ) { if ( is_object( $category ) && ! is_wp_error( $category ) ) { $category->cat_ID = $category->term_id; $category->category_count = $category->count; $category->category_description = $category->description; $category->cat_name = $category->name; $category->category_nicename = $category->slug; $category->category_parent = $category->parent; } elseif ( is_array( $category ) && isset( $category['term_id'] ) ) { $category['cat_ID'] = &$category['term_id']; $category['category_count'] = &$category['count']; $category['category_description'] = &$category['description']; $category['cat_name'] = &$category['name']; $category['category_nicename'] = &$category['slug']; $category['category_parent'] = &$category['parent']; } }
Warning: Cannot modify header information - headers already sent by (output started at /htdocs/niameyenligne.com/wp-includes/category.php:1) in /htdocs/niameyenligne.com/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /htdocs/niameyenligne.com/wp-includes/category.php:1) in /htdocs/niameyenligne.com/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /htdocs/niameyenligne.com/wp-includes/category.php:1) in /htdocs/niameyenligne.com/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /htdocs/niameyenligne.com/wp-includes/category.php:1) in /htdocs/niameyenligne.com/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /htdocs/niameyenligne.com/wp-includes/category.php:1) in /htdocs/niameyenligne.com/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /htdocs/niameyenligne.com/wp-includes/category.php:1) in /htdocs/niameyenligne.com/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /htdocs/niameyenligne.com/wp-includes/category.php:1) in /htdocs/niameyenligne.com/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /htdocs/niameyenligne.com/wp-includes/category.php:1) in /htdocs/niameyenligne.com/wp-includes/rest-api/class-wp-rest-server.php on line 1831
{"id":30983,"date":"2023-09-13T14:34:17","date_gmt":"2023-09-13T14:34:17","guid":{"rendered":"https:\/\/africanmediaagency.com\/?p=108622"},"modified":"2023-09-13T14:34:17","modified_gmt":"2023-09-13T14:34:17","slug":"semaine-africaine-du-climat-2023-crtve-development-marque-les-esprits-en-mobilisant-des-emplois-verts-pour-la-jeunesse-africaine","status":"publish","type":"post","link":"https:\/\/niameyenligne.com\/semaine-africaine-du-climat-2023-crtve-development-marque-les-esprits-en-mobilisant-des-emplois-verts-pour-la-jeunesse-africaine\/","title":{"rendered":"Semaine africaine du climat 2023: Crtve Development marque les esprits en mobilisant des emplois verts pour la jeunesse africaine"},"content":{"rendered":"
\n
\"\"
Photo de la table ronde\u00a0(Jabri Ibrahim, Rouge The Rapper & Okoth Opondo)<\/em>
<\/figcaption><\/figure>\n<\/div>\n

NAIROBI, Kenya, 13 septembre 2023 \/African Media Agency (AMA)\/- Crtve Development<\/a> (CD), une organisation panafricaine pionni\u00e8re en mati\u00e8re de plaidoyer, a jou\u00e9 un r\u00f4le actif lors du Sommet africain sur le climat 2023, qui s’est tenu du 4 au 6 septembre 2023 \u00e0 Nairobi, au Kenya. CD a non seulement anim\u00e9, mais aussi particip\u00e9 activement \u00e0 une s\u00e9rie d’\u00e9v\u00e9nements \u00e0 fort impact, soulignant son engagement \u00e0 conduire des changements positifs sur l’ensemble du continent africain.<\/p>\n

En partenariat avec Shifteye Studios, Crtve Development a ouvert un espace inclusif et accessible, con\u00e7u pour renforcer les capacit\u00e9s de diff\u00e9rents groupes d’individus, qu’il s’agisse d’activistes climatiques exp\u00e9riment\u00e9s ou de personnes cherchant \u00e0 approfondir leur compr\u00e9hension du paysage climatique. Ce programme refl\u00e8te l’engagement in\u00e9branlable de CD \u00e0 favoriser une communaut\u00e9 climatique dynamique o\u00f9 les connaissances et les id\u00e9es circulent librement.<\/p>\n

Tout au long de la Semaine africaine du climat, la salle am\u00e9nag\u00e9e aux studios Shifteye a servi de cadre \u00e0 des ateliers, des discussions et des \u00e9v\u00e9nements visant \u00e0 stimuler l’action en faveur du climat et \u00e0 cr\u00e9er un \u00e9lan pour une Afrique plus verte et plus durable.<\/p>\n

L’un des temps forts de l’\u00e9v\u00e9nement a \u00e9t\u00e9 un d\u00e9bat de jeunes r\u00e9unissant d’\u00e9minents activistes kenyans, Jabri Ibrahim et Natasha Boella, ainsi que l’artiste sud-africain Rouge The Rapper, mod\u00e9r\u00e9 par le journaliste Okoth Opondo. Jabri Ibrahim, expert en politique \u00e9nerg\u00e9tique, a soulign\u00e9 le besoin crucial d’un financement climatique r\u00e9pondant aux normes mondiales, compte tenu de la vuln\u00e9rabilit\u00e9 de l’Afrique aux effets persistants des \u00e9v\u00e9nements li\u00e9s au climat.<\/p>\n

Tous les pays ressentent actuellement les cons\u00e9quences les plus graves des ph\u00e9nom\u00e8nes li\u00e9s au changement climatique, tels que les typhons, les s\u00e9cheresses, les inondations, les ph\u00e9nom\u00e8nes m\u00e9t\u00e9orologiques impr\u00e9visibles, etc. Pour l’Afrique, ces \u00e9v\u00e9nements laissent des traces plus durables en raison de la faible capacit\u00e9 d’adaptation de la r\u00e9gion – les effets d’un typhon en Afrique peuvent \u00eatre de longue dur\u00e9e. C’est pourquoi il est primordial que le financement de la lutte contre le changement climatique se fasse \u00e0 grande \u00e9chelle et que la qualit\u00e9 de ce financement r\u00e9ponde aux normes mondiales applicables aux pays du Nord”. – Jabri Ibrahim, expert en politique \u00e9nerg\u00e9tique<\/p>\n

Le programme s’est poursuivi par des tables rondes sur des sujets tels que “la collecte de fonds et le crowdfunding”, “la programmation et l’\u00e9volutivit\u00e9” et “la marque et le positionnement”. Ces sessions ont favoris\u00e9 des discussions collaboratives entre les organisations, offrant une occasion unique aux activistes de se r\u00e9unir librement pendant la Semaine africaine du climat.<\/p>\n

\n
\"\"
Mme Vanessa Nakate, activiste climatique et fondatrice du mouvement Rise Up\u00a0<\/em>
<\/figcaption><\/figure>\n<\/div>\n

Lors de la soir\u00e9e de cl\u00f4ture, Crtve Development, en collaboration avec la Fondation Tard et le mouvement Rise Up de l’ambassadrice de bonne volont\u00e9 de l’UNICEF Vanessa Nakate, a organis\u00e9 une table ronde sur le th\u00e8me de la “transition juste”. La session a explor\u00e9 les diff\u00e9rents aspects et perspectives de cette transition, impliquant des participants de divers horizons et permettant des discussions ouvertes et des questions. La soir\u00e9e s’est termin\u00e9e par un Happy Hour sur les catastrophes climatiques organis\u00e9 par Kairos Futura.<\/p>\n

La campagne de Crtve Development, “WE!Are Africa Unmuted”, met en lumi\u00e8re l’adaptation, la r\u00e9silience et l’ing\u00e9niosit\u00e9 de l’Afrique face au changement climatique et \u00e0 l’in\u00e9galit\u00e9 sociale. Cette campagne a red\u00e9fini l’avenir climatique vert de l’Afrique \u00e0 travers des perspectives innovantes, en phase avec les exp\u00e9riences uniques du continent. CD a pr\u00e9sent\u00e9 ce travail dans l’espace public, offrant une plateforme pour des discussions int\u00e9ressantes et des sessions de r\u00e9seautage.<\/p>\n

En pr\u00e9lude au Sommet africain sur le climat, Crtve Development a organis\u00e9, le 3 septembre, un cocktail tr\u00e8s convivial au Bambino Latin Italian Kitchen \u00e0 Nairobi. La rencontre a rassembl\u00e9 des personnalit\u00e9s influentes du gouvernement, du monde des affaires, de la philanthropie et de la soci\u00e9t\u00e9 civile, unies dans leur objectif d’accro\u00eetre la visibilit\u00e9 des efforts locaux d’adaptation au climat en Afrique. Parmi les participants distingu\u00e9s figuraient M. Stephen Otieno (responsable du programme sectoriel r\u00e9gional du C40 pour l’Afrique), M. Steen Sonne Andersen (ambassadeur du Danemark en Somalie), Mme Mary Githinji (responsable de l’engagement pour les transitions \u00e9nerg\u00e9tiques, WRI Afrique), et Mohamed Okash (activiste et chercheur en mati\u00e8re de climat). L’\u00e9v\u00e9nement \u00e9tait anim\u00e9 par le Dr Okito Wedi, fondateur et PDG de Crtve Development, et Mme Vanessa Nakate, ambassadrice de bonne volont\u00e9 de l’UNICEF et fondatrice du mouvement Rise Up, a prononc\u00e9 le discours inaugural.<\/p>\n

\n
\"\"
M. Nolo Mokoena, cofondateur et chef des op\u00e9rations de Crtve Development<\/em>
<\/figcaption><\/figure>\n<\/div>\n

L’objectif principal de cet \u00e9v\u00e9nement de haut niveau \u00e9tait de mettre en lumi\u00e8re des initiatives d’adaptation au climat innovantes et \u00e9volutives, susceptibles de g\u00e9n\u00e9rer des opportunit\u00e9s d’emploi durables et \u00e9cologiques pour la jeunesse africaine sur l’ensemble du continent. Crtve Development a annonc\u00e9 son objectif ambitieux de mobiliser 1 million d’emplois verts pour la jeunesse africaine d’ici 2030, tant dans le secteur public que priv\u00e9. CD vise \u00e0 faire de l’adaptation un outil puissant pour l’emploi des jeunes, en obtenant le soutien politique et l’engagement du secteur priv\u00e9. <\/p>\n

L’organisation appelle le secteur priv\u00e9 \u00e0 s’engager \u00e0 mobiliser des emplois verts pour la jeunesse africaine et pr\u00e9voit de lancer officiellement cette initiative lors de la COP28 \u00e0 la fin de l’ann\u00e9e. En outre, Crtve Development se r\u00e9jouit de collaborer avec C40 Cities pour amplifier l’importance de la cr\u00e9ation d’emplois verts en Afrique.<\/p>\n

\n
\"\"
Okito Wedi, fondateur et directeur g\u00e9n\u00e9ral de Crtve Development<\/em>
<\/figcaption><\/figure>\n<\/div>\n

Dr Okito Wedi, fondateur et directeur g\u00e9n\u00e9ral de Crtve Development, a fait part de ses r\u00e9flexions : “Participer au Sommet africain sur le climat est un privil\u00e8ge extraordinaire pour Crtve Development. Notre pr\u00e9sence \u00e0 ce rassemblement vital refl\u00e8te notre engagement de longue date \u00e0 faire progresser l’adaptation au climat sur tout le continent africain. Nous ne sommes pas seulement ici pour pr\u00e9senter nos campagnes pionni\u00e8res, mais aussi pour susciter un v\u00e9ritable changement en r\u00e9unissant des esprits visionnaires. Notre campagne “WE!Are Africa Unmuted” est embl\u00e9matique de la r\u00e9silience de l’Afrique face aux d\u00e9fis climatiques. Gr\u00e2ce \u00e0 des perspectives innovantes et \u00e0 la collaboration avec des partenaires estim\u00e9s, nous red\u00e9finissons l’avenir climatique vert de l’Afrique. Ensemble, avec une d\u00e9termination commune, nous fa\u00e7onnerons l’Afrique que nous voulons voir”.<\/p>\n

La participation de CD au Sommet Africain sur le Climat 2023 souligne son engagement in\u00e9branlable \u00e0 \u00eatre le fer de lance d’un changement positif \u00e0 travers l’Afrique, \u00e0 exploiter les opportunit\u00e9s et \u00e0 amplifier les voix en faveur d’un avenir plus durable.<\/p>\n

Distributed by\u00a0<\/em>African Media Agency<\/a>\u00a0pour Crtve Development<\/em><\/p>\n

A propos de Crtve Development (CD):<\/strong><\/p>\n

Crtve Development (CD) est une organisation panafricaine de premier plan en mati\u00e8re de plaidoyer qui se tient \u00e0 l’avant-garde du changement sur le continent africain. Convaincue que la narration et le plaidoyer peuvent conduire \u00e0 une transformation positive, CD se fait le champion d’un d\u00e9veloppement pris en charge et conduit par les Africains, en comblant le foss\u00e9 entre les populations et les politiques. En exploitant le pouvoir de la cr\u00e9ativit\u00e9, de la narration et de la recherche, CD permet aux voix locales de s’exprimer et m\u00e8ne des campagnes sur des questions de d\u00e9veloppement essentielles, en inspirant l’action et en favorisant l’empathie. Chez CD, nous imaginons une Afrique prosp\u00e8re o\u00f9 le d\u00e9veloppement durable passe par des politiques fond\u00e9es sur des donn\u00e9es probantes et des pratiques inclusives. Gr\u00e2ce \u00e0 des campagnes qui suscitent la r\u00e9flexion, \u00e0 des histoires impactantes et \u00e0 une utilisation innovante de la technologie, CD suscite le changement, une histoire \u00e0 la fois. Notre engagement \u00e0 autonomiser l’Afrique et \u00e0 susciter des changements transformateurs est au c\u0153ur de tout ce que nous faisons.<\/p>\n

Pour les demandes concernant les m\u00e9dias, veuillez contacter:<\/strong><\/p>\n

Portia Moemedi<\/p>\n

Email: portia@creativedevelop.org<\/a> <\/p>\n

Telephone: +27 (0)76 302 1029<\/p>\n

Site internet:\u00a0www.creativedevelop.org\/<\/a><\/p>\n

Pour plus d’informations et de mises \u00e0 jour, suivez-nous sur:<\/strong><\/p>\n

Facebook: @crtvedevelopment<\/a><\/p>\n

Instagram: @crtve_development<\/a><\/p>\n

X: @crtvedevelop<\/a><\/p>\n

LinkedIn: @crtve-development<\/a><\/p>\n

The post Semaine africaine du climat 2023: Crtve Development marque les esprits en mobilisant des emplois verts pour la jeunesse africaine<\/a> appeared first on African Media Agency<\/a>.<\/p>\n

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

Photo de la table ronde\u00a0(Jabri Ibrahim, Rouge The Rapper & Okoth Opondo) NAIROBI, Kenya, 13<\/p>\n","protected":false},"author":1,"featured_media":30984,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[14],"tags":[],"class_list":["post-30983","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ama"],"yoast_head":"\nSemaine africaine du climat 2023: Crtve Development marque les esprits en mobilisant des emplois verts pour la jeunesse africaine - Niamey en ligne<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/niameyenligne.com\/semaine-africaine-du-climat-2023-crtve-development-marque-les-esprits-en-mobilisant-des-emplois-verts-pour-la-jeunesse-africaine\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Semaine africaine du climat 2023: Crtve Development marque les esprits en mobilisant des emplois verts pour la jeunesse africaine - Niamey en ligne\" \/>\n<meta property=\"og:description\" content=\"Photo de la table ronde\u00a0(Jabri Ibrahim, Rouge The Rapper & Okoth Opondo) NAIROBI, Kenya, 13\" \/>\n<meta property=\"og:url\" content=\"https:\/\/niameyenligne.com\/semaine-africaine-du-climat-2023-crtve-development-marque-les-esprits-en-mobilisant-des-emplois-verts-pour-la-jeunesse-africaine\/\" \/>\n<meta property=\"og:site_name\" content=\"Niamey en ligne\" \/>\n<meta property=\"article:published_time\" content=\"2023-09-13T14:34:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/africanmediaagency.com\/wp-content\/uploads\/2023\/09\/Screen-Shot-2023-09-12-at-14.07.53.png\" \/>\n<meta name=\"author\" content=\"La Redaction\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u00c9crit par\" \/>\n\t<meta name=\"twitter:data1\" content=\"La Redaction\" \/>\n\t<meta name=\"twitter:label2\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/niameyenligne.com\/semaine-africaine-du-climat-2023-crtve-development-marque-les-esprits-en-mobilisant-des-emplois-verts-pour-la-jeunesse-africaine\/\",\"url\":\"https:\/\/niameyenligne.com\/semaine-africaine-du-climat-2023-crtve-development-marque-les-esprits-en-mobilisant-des-emplois-verts-pour-la-jeunesse-africaine\/\",\"name\":\"Semaine africaine du climat 2023: Crtve Development marque les esprits en mobilisant des emplois verts pour la jeunesse africaine - Niamey en ligne\",\"isPartOf\":{\"@id\":\"https:\/\/niameyenligne.com\/#website\"},\"datePublished\":\"2023-09-13T14:34:17+00:00\",\"dateModified\":\"2023-09-13T14:34:17+00:00\",\"author\":{\"@id\":\"https:\/\/niameyenligne.com\/#\/schema\/person\/ae27da2174beb3a2595d2790b5b367d2\"},\"breadcrumb\":{\"@id\":\"https:\/\/niameyenligne.com\/semaine-africaine-du-climat-2023-crtve-development-marque-les-esprits-en-mobilisant-des-emplois-verts-pour-la-jeunesse-africaine\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/niameyenligne.com\/semaine-africaine-du-climat-2023-crtve-development-marque-les-esprits-en-mobilisant-des-emplois-verts-pour-la-jeunesse-africaine\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/niameyenligne.com\/semaine-africaine-du-climat-2023-crtve-development-marque-les-esprits-en-mobilisant-des-emplois-verts-pour-la-jeunesse-africaine\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/niameyenligne.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Semaine africaine du climat 2023: Crtve Development marque les esprits en mobilisant des emplois verts pour la jeunesse africaine\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/niameyenligne.com\/#website\",\"url\":\"https:\/\/niameyenligne.com\/\",\"name\":\"Niamey en ligne\",\"description\":\"L'info de Niamey et d'ailleurs.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/niameyenligne.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/niameyenligne.com\/#\/schema\/person\/ae27da2174beb3a2595d2790b5b367d2\",\"name\":\"La Redaction\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/niameyenligne.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1c1a8c2ad21a98650038996bea6f137b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1c1a8c2ad21a98650038996bea6f137b?s=96&d=mm&r=g\",\"caption\":\"La Redaction\"},\"sameAs\":[\"https:\/\/niameyenligne.com\"],\"url\":\"https:\/\/niameyenligne.com\/author\/duosadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Semaine africaine du climat 2023: Crtve Development marque les esprits en mobilisant des emplois verts pour la jeunesse africaine - Niamey en ligne","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:\/\/niameyenligne.com\/semaine-africaine-du-climat-2023-crtve-development-marque-les-esprits-en-mobilisant-des-emplois-verts-pour-la-jeunesse-africaine\/","og_locale":"fr_FR","og_type":"article","og_title":"Semaine africaine du climat 2023: Crtve Development marque les esprits en mobilisant des emplois verts pour la jeunesse africaine - Niamey en ligne","og_description":"Photo de la table ronde\u00a0(Jabri Ibrahim, Rouge The Rapper & Okoth Opondo) NAIROBI, Kenya, 13","og_url":"https:\/\/niameyenligne.com\/semaine-africaine-du-climat-2023-crtve-development-marque-les-esprits-en-mobilisant-des-emplois-verts-pour-la-jeunesse-africaine\/","og_site_name":"Niamey en ligne","article_published_time":"2023-09-13T14:34:17+00:00","og_image":[{"url":"https:\/\/africanmediaagency.com\/wp-content\/uploads\/2023\/09\/Screen-Shot-2023-09-12-at-14.07.53.png"}],"author":"La Redaction","twitter_card":"summary_large_image","twitter_misc":{"\u00c9crit par":"La Redaction","Dur\u00e9e de lecture estim\u00e9e":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/niameyenligne.com\/semaine-africaine-du-climat-2023-crtve-development-marque-les-esprits-en-mobilisant-des-emplois-verts-pour-la-jeunesse-africaine\/","url":"https:\/\/niameyenligne.com\/semaine-africaine-du-climat-2023-crtve-development-marque-les-esprits-en-mobilisant-des-emplois-verts-pour-la-jeunesse-africaine\/","name":"Semaine africaine du climat 2023: Crtve Development marque les esprits en mobilisant des emplois verts pour la jeunesse africaine - Niamey en ligne","isPartOf":{"@id":"https:\/\/niameyenligne.com\/#website"},"datePublished":"2023-09-13T14:34:17+00:00","dateModified":"2023-09-13T14:34:17+00:00","author":{"@id":"https:\/\/niameyenligne.com\/#\/schema\/person\/ae27da2174beb3a2595d2790b5b367d2"},"breadcrumb":{"@id":"https:\/\/niameyenligne.com\/semaine-africaine-du-climat-2023-crtve-development-marque-les-esprits-en-mobilisant-des-emplois-verts-pour-la-jeunesse-africaine\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/niameyenligne.com\/semaine-africaine-du-climat-2023-crtve-development-marque-les-esprits-en-mobilisant-des-emplois-verts-pour-la-jeunesse-africaine\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/niameyenligne.com\/semaine-africaine-du-climat-2023-crtve-development-marque-les-esprits-en-mobilisant-des-emplois-verts-pour-la-jeunesse-africaine\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/niameyenligne.com\/"},{"@type":"ListItem","position":2,"name":"Semaine africaine du climat 2023: Crtve Development marque les esprits en mobilisant des emplois verts pour la jeunesse africaine"}]},{"@type":"WebSite","@id":"https:\/\/niameyenligne.com\/#website","url":"https:\/\/niameyenligne.com\/","name":"Niamey en ligne","description":"L'info de Niamey et d'ailleurs.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/niameyenligne.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"fr-FR"},{"@type":"Person","@id":"https:\/\/niameyenligne.com\/#\/schema\/person\/ae27da2174beb3a2595d2790b5b367d2","name":"La Redaction","image":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/niameyenligne.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1c1a8c2ad21a98650038996bea6f137b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1c1a8c2ad21a98650038996bea6f137b?s=96&d=mm&r=g","caption":"La Redaction"},"sameAs":["https:\/\/niameyenligne.com"],"url":"https:\/\/niameyenligne.com\/author\/duosadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/posts\/30983"}],"collection":[{"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/comments?post=30983"}],"version-history":[{"count":0,"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/posts\/30983\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/media\/30984"}],"wp:attachment":[{"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/media?parent=30983"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/categories?post=30983"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/tags?post=30983"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}