footer' ); } } if ( ! function_exists( 'publisher_inject_location_before_footer' ) ) { /** * Before footer */ function publisher_inject_location_before_footer() { publisher_inject_location( 'before_footer' ); } } if ( ! function_exists( 'publisher_inject_location_after_footer' ) ) { /** * After footer */ function publisher_inject_location_after_footer() { publisher_inject_location( 'after_footer' ); } } if ( ! function_exists( 'publisher_inject_location_category_after_header' ) ) { /** * After footer */ function publisher_inject_location_category_after_header() { if ( publisher_is_valid_tax() ) { publisher_inject_location( 'category_after_header' ); } } } if ( ! function_exists( 'publisher_inject_location_category_after_posts' ) ) { /** * After footer */ function publisher_inject_location_category_after_posts() { if ( publisher_is_valid_tax() ) { publisher_inject_location( 'category_after_posts' ); } } } if ( ! function_exists( 'publisher_inject_location_tag_after_header' ) ) { /** * After footer */ function publisher_inject_location_tag_after_header() { if ( publisher_is_valid_tax( 'tag' ) ) { publisher_inject_location( 'tag_after_header' ); } } } if ( ! function_exists( 'publisher_inject_location_tag_after_posts' ) ) { /** * After footer */ function publisher_inject_location_tag_after_posts() { if ( publisher_is_valid_tax( 'tag' ) ) { publisher_inject_location( 'tag_after_posts' ); } } } if ( ! function_exists( 'publisher_inject_location' ) ) { /** * Injects a location from location ID * * @param $location_id */ function publisher_inject_location( $location_id ) { $page = publisher_can_inject( $location_id ); // if the injection location is a boolean value // it means comes from override (disable) if ( $page === true || $page === false ) { return; } $content = false; $page_layout = publisher_get_page_layout_file(); $injector_status = BF_Content_Inject::$working; if ( $page && ( $page_object = get_post( $page ) ) ) { publisher_inject_location_set_status( $location_id ); BF_Content_Inject::$working = false; $content = bf_the_content_by_id( $page, array( 'echo' => false, 'context' => 'inject_location' ) ); BF_Content_Inject::$working = $injector_status; publisher_inject_location_set_status( $location_id ); // clear } // // show injection content // if ( $content ) { echo "
$content
"; } } // publisher_inject_location } if ( ! function_exists( 'publisher_inject_location_get_status' ) ) { /** * Returns current active injection location ID or false * * @return mixed */ function publisher_inject_location_get_status() { global $publisher_injection_location_status; return $publisher_injection_location_status; } } if ( ! function_exists( 'publisher_inject_location_set_status' ) ) { /** * Sets current active injection location ID or clear it! * * @param bool $location */ function publisher_inject_location_set_status( $location = false ) { global $publisher_injection_location_status; $publisher_injection_location_status = $location; } } /** * Compatible inject location with 'Ultimate VC Addons' plugin * * To enqueue needed scripts & css in injected post content. * * @since 5.2.0 */ if ( class_exists( 'Ultimate_VC_Addons' ) ) { /** * We add post content of all injected locations to 'Ultimate VC Addons' script loader * To determine which script and styles must enqueue and print in the page. * * @since 5.2.0 */ add_filter( 'ultimate_front_scripts_post_content', 'publisher_inject_location_uva_compatibility' ); /** * 'Ultimate VC Addons' do not work and enqueue static files in 404 & search page. * * To bypass this limitation we temporary tell lie and return false for all is_search() & is_404() function calls. * * @since 5.2.0 */ add_action( 'wp_enqueue_scripts', 'publisher_inject_location_before_uva', 98.9 ); add_action( 'wp_enqueue_scripts', 'publisher_inject_location_after_uva', 99.1 ); if ( ! function_exists( 'publisher_inject_location_uva_compatibility' ) ) { /** * Append all injected locations post content to 'Ultimate VC Addons' script loader * * @hooked ultimate_front_scripts_post_content * * @param string $post_content * * @since 5.2.0 * @return string */ function publisher_inject_location_uva_compatibility( $post_content ) { $all_locations = array( 'before_header', 'after_header', 'before_footer', 'after_footer', ); foreach ( $all_locations as $location ) { if ( ! $post_id = publisher_can_inject( $location ) ) { continue; } if ( ! $post_object = get_post( $post_id ) ) { continue; } $post_content .= ' '; $post_content .= $post_object->post_content; } return $post_content; } } if ( ! function_exists( 'publisher_inject_location_before_uva' ) ) { /** * Set is_404 and is_search of wp main query to false. * * @since 5.2.0 */ function publisher_inject_location_before_uva() { global $wp_query, $publisher_inject_location_uva_compatibility; $publisher_inject_location_uva_compatibility['is_404'] = is_404(); $publisher_inject_location_uva_compatibility['is_search'] = is_search(); $wp_query->is_404 = false; $wp_query->is_search = false; } } if ( ! function_exists( 'publisher_inject_location_after_uva' ) ) { /** * Reset wp main query manipulations. * * @since 5.2.0 */ function publisher_inject_location_after_uva() { global $wp_query, $publisher_inject_location_uva_compatibility; $wp_query->is_404 = $publisher_inject_location_uva_compatibility['is_404']; $wp_query->is_search = $publisher_inject_location_uva_compatibility['is_search']; unset( $publisher_inject_location_uva_compatibility ); } } } ( ! empty( $robots['noimageindex'] ) ) { $robots['imageindex'] = null; // `max-image-preview` should set be to `none` when `noimageindex` is present. // Using `isset` rather than `! empty` here so that in the rare case of `max-image-preview` // being equal to an empty string due to filtering, its value would still be set to `none`. if ( isset( $robots['max-image-preview'] ) ) { $robots['max-image-preview'] = 'none'; } } if ( ! empty( $robots['nosnippet'] ) ) { $robots['snippet'] = null; } if ( ! empty( $robots['noindex'] ) ) { $robots['index'] = null; $robots['imageindex'] = null; $robots['noimageindex'] = null; $robots['archive'] = null; $robots['noarchive'] = null; $robots['snippet'] = null; $robots['nosnippet'] = null; $robots['max-snippet'] = null; $robots['max-image-preview'] = null; $robots['max-video-preview'] = null; } return $robots; } /** * Sorts the robots array. * * @param array $robots The robots array. * * @return array The sorted robots array. */ protected function sort_robots( $robots ) { \uksort( $robots, static function ( $a, $b ) { $order = [ 'index' => 0, 'noindex' => 1, 'follow' => 2, 'nofollow' => 3, ]; $ai = ( $order[ $a ] ?? 4 ); $bi = ( $order[ $b ] ?? 4 ); return ( $ai - $bi ); } ); return $robots; } } Guiglo : Le Conseil régional et Children of Africa mettent 2700 livres à la disposition des élèves - JusteInfos- Information générale
topheader

Guiglo : Le Conseil régional et Children of Africa mettent 2700 livres à la disposition des élèves

Un aperçu de l’intérieur du bibliobus avec les livres offerts aux élèves de Guiglo.
30
S'inscrire à la newsletter

- Advertisement -

Listen to this article

Donner le goût de la lecture aux enfants et aux apprenants des établissements préscolaires, primaires et secondaires de la cité du pardon. C’est tout le sens de la présence de la caravane du livre, lancée à Guiglo le jeudi 20 janvier 2022, par la fondation Children of Africa et le conseil régional du Cavally.

Une vue du bibliobus devant redonner la goût de la lecture aux élèves de Guiglo.

Trois (03) mois durant, un bibliobus de Children of Africa va sillonner les écoles accessibles du département de Guiglo, pour amener les tout-petits à avoir la culture de livre. Grâce à la première dame de Côte d’Ivoire, Dominique Ouattara, et le ministre Anne Désirée Ouloto, présidente du conseil régional du Cavally, les apprenants de 04 à 20 ans auront accès gracieusement à 2700 livres.

Avant le début de cette vaste caravane, le chef de délégation, Yapo Mobio Mathieu, coordinateur du projet bibliobus, chef de délégation et madame Naï Marie Hortense, directrice générale adjointe d’administration du conseil régional, ont fait leurs civilités au préfet de région, Yacouba Doumbia, qui a salué cette belle collaboration entre le conseil régional et la Fondation Children of Africa. Le projet bibliobus de la fondation Children of Africa a démarré en décembre 2008 et plusieurs villes ont, déjà, été visitées.

Manu Koffi (Correspondant)

 

- Advertisement -

- Advertisement -

- Advertisement -

- Advertisement -