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":4331,"date":"2022-09-09T15:14:28","date_gmt":"2022-09-09T15:14:28","guid":{"rendered":"https:\/\/africanmediaagency.com\/?p=91645"},"modified":"2022-09-09T15:14:28","modified_gmt":"2022-09-09T15:14:28","slug":"afrique-laction-pour-le-climat-prend-de-lampleur-mais-il-faut-faire-plus-selon-lomm","status":"publish","type":"post","link":"https:\/\/niameyenligne.com\/afrique-laction-pour-le-climat-prend-de-lampleur-mais-il-faut-faire-plus-selon-lomm\/","title":{"rendered":"Afrique : l\u2019action pour le climat prend de l\u2019ampleur, mais il faut faire plus, selon l\u2019OMM"},"content":{"rendered":"
\n
\"\"
CIFOR\/Olivier Girard
Le lac Bam, dans la r\u00e9gion Centre-Nord du Burkina Faso, \u00e0 une centaine de kilom\u00e8tres de Ouagadougou, conna\u00eet d\u2019\u00e9normes d\u00e9fis environnementaux.<\/figcaption><\/figure>\n<\/div>\n

NEW YORK, USA, le 9 Septembre 2022 -\/African Media Agency(AMA)\/-Le stress hydrique et les risques li\u00e9s \u00e0 l\u2019eau, tels que les s\u00e9cheresses et les inondations d\u00e9vastatrices, touchent de plein fouet les communaut\u00e9s, les \u00e9conomies et les \u00e9cosyst\u00e8mes africains. Les r\u00e9gimes pluviom\u00e9triques sont perturb\u00e9s, les glaciers disparaissent et les principaux lacs r\u00e9tr\u00e9cissent.<\/p>\n

Le rapport \u00ab \u00c9tat du climat en Afrique 2021 \u00bb contient des informations scientifiques fiables sur les tendances des temp\u00e9ratures et d\u2019autres indicateurs climatiques. Il montre en quoi les ph\u00e9nom\u00e8nes m\u00e9t\u00e9orologiques extr\u00eames et le changement climatique mettent en p\u00e9ril la sant\u00e9 et la s\u00e9curit\u00e9 des personnes, la s\u00e9curit\u00e9 alimentaire et hydrique et le d\u00e9veloppement socio \u00e9conomique. <\/p>\n

Bien que l\u2019Afrique ne repr\u00e9sente qu\u2019environ 2 \u00e0 3% des \u00e9missions mondiales de gaz \u00e0 effet de serre, elle en subit les cons\u00e9quences de mani\u00e8re disproportionn\u00e9e.<\/p>\n

\n
\"\"
\u00a9 UNICEF\/Mulugeta Ayene
La Corne de l\u2019Afrique conna\u00eet sa pire s\u00e9cheresse depuis plus de quatre d\u00e9cennies<\/figcaption><\/figure>\n<\/div>\n

Gros plan sur l\u2019eau<\/p>\n

Selon les estimations, le stress hydrique marqu\u00e9 qui s\u00e9vit en Afrique touche environ 250 millions de personnes sur le continent et pourrait entra\u00eener le d\u00e9placement de 700 millions de personnes d\u2019ici \u00e0 2030. Quatre pays africains sur cinq pourraient ne pas disposer de ressources en eau g\u00e9r\u00e9es de mani\u00e8re durable d\u2019ici \u00e0 2030.<\/p>\n

\u00ab L\u2019aggravation de la crise et la famine qui menace la corne de l\u2019Afrique, en proie \u00e0 la s\u00e9cheresse, montrent comment le changement climatique peut exacerber les chocs hydriques, menacer la vie de centaines de milliers de personnes et d\u00e9stabiliser des communaut\u00e9s, des pays et des r\u00e9gions enti\u00e8res \u00bb, a d\u00e9clar\u00e9 le Secr\u00e9taire g\u00e9n\u00e9ral de l\u2019OMM<\/a>, Petteri Taalas.<\/p>\n

\u00ab Le climat de l\u2019Afrique s\u2019est r\u00e9chauff\u00e9 davantage que le climat mondial moyen depuis l\u2019\u00e9poque pr\u00e9industrielle (1850-1900). Parall\u00e8menet, le niveau de la mer monte plus vite le long des c\u00f4tes africaines que dans le monde en moyenne, ce qui contribue \u00e0 accro\u00eetre la fr\u00e9quence et la gravit\u00e9 des inondations et de l\u2019\u00e9rosion c\u00f4ti\u00e8res, ainsi que la salinit\u00e9 dans les villes de faible altitude \u00bb, a indiqu\u00e9 M. Taalas, ajoutant que les changements qui touchent les masses d\u2019eau continentales ont des r\u00e9percussions majeures sur le secteur agricole, les \u00e9cosyst\u00e8mes et la biodiversit\u00e9.<\/p>\n

\u00ab La hausse des temp\u00e9ratures, les canicules, les inondations massives, les cyclones tropicaux, les s\u00e9cheresses prolong\u00e9es et l\u2019\u00e9l\u00e9vation du niveau de la mer entra\u00eenent des pertes en vies humaines, des dommages mat\u00e9riels et des d\u00e9placements de population \u00bb, a d\u00e9clar\u00e9 Josefa Leonel Correia Sacko, Commissaire charg\u00e9e de l\u2019agriculture, du d\u00e9veloppement rural, de l\u2019\u00e9conomie bleue et de l\u2019environnement durable \u00e0 la Commission de l\u2019Union africaine. <\/p>\n

Ces perturbations \u00ab compromettent la capacit\u00e9 de l\u2019Afrique \u00e0 tenir ses engagements pour atteindre les cibles des objectifs de d\u00e9veloppement durable (ODD) de l\u2019ONU, et concr\u00e9tiser les aspirations de l\u2019Agenda 2063 de l\u2019Union africaine \u2013 L\u2019Afrique que nous voulons, qui trace la voie que devrait suivre l\u2019Afrique pour acc\u00e9der \u00e0 une croissance \u00e9conomique et un d\u00e9veloppement inclusifs et durables \u00bb, a-t-elle ajout\u00e9.<\/p>\n

\n
\"\"
\u00a9 UNICEF\/Sebastian Rich
Un gar\u00e7on collecte le peu d’eau qu’il trouve dans une rivi\u00e8re ass\u00e9ch\u00e9e en raison de la s\u00e9cheresse \u00e0 Dollow, en Somalie.<\/figcaption><\/figure>\n<\/div>\n

L\u2019action climatique en Afrique prend de l\u2019ampleur<\/p>\n

\u00c0 l\u2019heure actuelle, seuls 40% de la population africaine ont acc\u00e8s \u00e0 des syst\u00e8mes d\u2019alerte pr\u00e9coce qui peuvent les prot\u00e9ger contre les effets des ph\u00e9nom\u00e8nes m\u00e9t\u00e9orologiques extr\u00eames et du changement climatique. <\/p>\n

L\u2019OMM, \u00e0 la demande du Secr\u00e9taire g\u00e9n\u00e9ral de l\u2019ONU, Ant\u00f3nio Guterres<\/a>, a donc fait de l\u2019Afrique sa priorit\u00e9 absolue pour garantir un acc\u00e8s universel aux alertes pr\u00e9coces au cours des cinq prochaines ann\u00e9es.<\/p>\n

L’action climatique prend n\u00e9anmoins de l’ampleur. Plus de 40 pays africains ont r\u00e9vis\u00e9 leurs plans nationaux pour le climat afin de rehausser leur niveau d\u2019ambition et d\u2019y ajouter des engagements plus importants en mati\u00e8re d\u2019adaptation au changement climatique et d\u2019att\u00e9nuation de ses effets. <\/p>\n

Bien que l\u2019Afrique ne contribue aux \u00e9missions mondiales de gaz \u00e0 effet de serre qu\u2019\u00e0 hauteur de 2 \u00e0 3%, plus de 83% des plans nationaux pour le climat comportent des objectifs en mati\u00e8re de r\u00e9duction des \u00e9missions de gaz \u00e0 effet de serre, cibl\u00e9s dans des domaines tels que l\u2019\u00e9nergie, l\u2019agriculture, les d\u00e9chets, l\u2019affectation des terres et la sylviculture.<\/p>\n

Le rapport \u00ab \u00c9tat du climat en Afrique 2021 \u00bb formule donc un certain nombre de recommandations, notamment pour renforcer les syst\u00e8mes d\u2019alerte pr\u00e9coce et intensifier la coop\u00e9ration transfrontali\u00e8re, les \u00e9changes de donn\u00e9es et le partage des connaissances. Il insiste sur la n\u00e9cessit\u00e9 d\u2019accro\u00eetre les investissements dans l\u2019adaptation et d\u2019agir de fa\u00e7on concert\u00e9e en faveur d\u2019une gestion plus int\u00e9gr\u00e9e des ressources en eau.<\/p>\n

Distribu\u00e9 par \u00a0<\/em>African Media Agency<\/a>\u00a0pour Onu Info<\/em>.<\/p>\n

The post Afrique : l\u2019action pour le climat prend de l\u2019ampleur, mais il faut faire plus, selon l’OMM<\/a> appeared first on African Media Agency<\/a>.<\/p>\n

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

CIFOR\/Olivier GirardLe lac Bam, dans la r\u00e9gion Centre-Nord du Burkina Faso, \u00e0 une centaine de<\/p>\n","protected":false},"author":1,"featured_media":4332,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[14],"tags":[],"class_list":["post-4331","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ama"],"yoast_head":"\nAfrique : l\u2019action pour le climat prend de l\u2019ampleur, mais il faut faire plus, selon l\u2019OMM - 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\/afrique-laction-pour-le-climat-prend-de-lampleur-mais-il-faut-faire-plus-selon-lomm\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Afrique : l\u2019action pour le climat prend de l\u2019ampleur, mais il faut faire plus, selon l\u2019OMM - Niamey en ligne\" \/>\n<meta property=\"og:description\" content=\"CIFOR\/Olivier GirardLe lac Bam, dans la r\u00e9gion Centre-Nord du Burkina Faso, \u00e0 une centaine de\" \/>\n<meta property=\"og:url\" content=\"https:\/\/niameyenligne.com\/afrique-laction-pour-le-climat-prend-de-lampleur-mais-il-faut-faire-plus-selon-lomm\/\" \/>\n<meta property=\"og:site_name\" content=\"Niamey en ligne\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-09T15:14:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/africanmediaagency.com\/wp-content\/uploads\/2022\/09\/Afrique-OMM-1-1024x464.jpeg\" \/>\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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/niameyenligne.com\/afrique-laction-pour-le-climat-prend-de-lampleur-mais-il-faut-faire-plus-selon-lomm\/\",\"url\":\"https:\/\/niameyenligne.com\/afrique-laction-pour-le-climat-prend-de-lampleur-mais-il-faut-faire-plus-selon-lomm\/\",\"name\":\"Afrique : l\u2019action pour le climat prend de l\u2019ampleur, mais il faut faire plus, selon l\u2019OMM - Niamey en ligne\",\"isPartOf\":{\"@id\":\"https:\/\/niameyenligne.com\/#website\"},\"datePublished\":\"2022-09-09T15:14:28+00:00\",\"dateModified\":\"2022-09-09T15:14:28+00:00\",\"author\":{\"@id\":\"https:\/\/niameyenligne.com\/#\/schema\/person\/ae27da2174beb3a2595d2790b5b367d2\"},\"breadcrumb\":{\"@id\":\"https:\/\/niameyenligne.com\/afrique-laction-pour-le-climat-prend-de-lampleur-mais-il-faut-faire-plus-selon-lomm\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/niameyenligne.com\/afrique-laction-pour-le-climat-prend-de-lampleur-mais-il-faut-faire-plus-selon-lomm\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/niameyenligne.com\/afrique-laction-pour-le-climat-prend-de-lampleur-mais-il-faut-faire-plus-selon-lomm\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/niameyenligne.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Afrique : l\u2019action pour le climat prend de l\u2019ampleur, mais il faut faire plus, selon l\u2019OMM\"}]},{\"@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":"Afrique : l\u2019action pour le climat prend de l\u2019ampleur, mais il faut faire plus, selon l\u2019OMM - 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\/afrique-laction-pour-le-climat-prend-de-lampleur-mais-il-faut-faire-plus-selon-lomm\/","og_locale":"fr_FR","og_type":"article","og_title":"Afrique : l\u2019action pour le climat prend de l\u2019ampleur, mais il faut faire plus, selon l\u2019OMM - Niamey en ligne","og_description":"CIFOR\/Olivier GirardLe lac Bam, dans la r\u00e9gion Centre-Nord du Burkina Faso, \u00e0 une centaine de","og_url":"https:\/\/niameyenligne.com\/afrique-laction-pour-le-climat-prend-de-lampleur-mais-il-faut-faire-plus-selon-lomm\/","og_site_name":"Niamey en ligne","article_published_time":"2022-09-09T15:14:28+00:00","og_image":[{"url":"https:\/\/africanmediaagency.com\/wp-content\/uploads\/2022\/09\/Afrique-OMM-1-1024x464.jpeg"}],"author":"La Redaction","twitter_card":"summary_large_image","twitter_misc":{"\u00c9crit par":"La Redaction","Dur\u00e9e de lecture estim\u00e9e":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/niameyenligne.com\/afrique-laction-pour-le-climat-prend-de-lampleur-mais-il-faut-faire-plus-selon-lomm\/","url":"https:\/\/niameyenligne.com\/afrique-laction-pour-le-climat-prend-de-lampleur-mais-il-faut-faire-plus-selon-lomm\/","name":"Afrique : l\u2019action pour le climat prend de l\u2019ampleur, mais il faut faire plus, selon l\u2019OMM - Niamey en ligne","isPartOf":{"@id":"https:\/\/niameyenligne.com\/#website"},"datePublished":"2022-09-09T15:14:28+00:00","dateModified":"2022-09-09T15:14:28+00:00","author":{"@id":"https:\/\/niameyenligne.com\/#\/schema\/person\/ae27da2174beb3a2595d2790b5b367d2"},"breadcrumb":{"@id":"https:\/\/niameyenligne.com\/afrique-laction-pour-le-climat-prend-de-lampleur-mais-il-faut-faire-plus-selon-lomm\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/niameyenligne.com\/afrique-laction-pour-le-climat-prend-de-lampleur-mais-il-faut-faire-plus-selon-lomm\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/niameyenligne.com\/afrique-laction-pour-le-climat-prend-de-lampleur-mais-il-faut-faire-plus-selon-lomm\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/niameyenligne.com\/"},{"@type":"ListItem","position":2,"name":"Afrique : l\u2019action pour le climat prend de l\u2019ampleur, mais il faut faire plus, selon l\u2019OMM"}]},{"@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\/4331"}],"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=4331"}],"version-history":[{"count":0,"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/posts\/4331\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/media\/4332"}],"wp:attachment":[{"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/media?parent=4331"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/categories?post=4331"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/niameyenligne.com\/wp-json\/wp\/v2\/tags?post=4331"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}