/** * NYASA TIMES - SEO & ARCHIVE CLEANUP * * One consolidated snippet for: * - clean category H1 headings * - AIOSEO category titles * - category meta descriptions * - clean article SEO titles */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * --------------------------------------------------------- * CATEGORY SEO CONFIGURATION * --------------------------------------------------------- */ function nyasa_times_category_seo_data() { return array( 'news' => array( 'h1' => 'Latest Malawi News', 'title' => 'Latest Malawi News | Breaking Updates & Public Interest Stories | Nyasa Times', 'desc' => 'Latest Malawi news, breaking updates, public-interest stories, community developments and national reports from Nyasa Times.', ), 'national' => array( 'h1' => 'Malawi National News', 'title' => 'Malawi National News | Latest Local & Public Affairs | Nyasa Times', 'desc' => 'Read Malawi national news, public affairs, local updates, government services and community stories from Nyasa Times.', ), 'politics' => array( 'h1' => 'Malawi Politics News', 'title' => 'Malawi Politics News | Government, Parliament & Elections | Nyasa Times', 'desc' => 'Latest Malawi politics news, elections, Parliament, government decisions, party updates, policy debate and analysis from Nyasa Times.', ), 'business' => array( 'h1' => 'Malawi Business & Economy News', 'title' => 'Malawi Business News | Economy, Banking & Markets | Nyasa Times', 'desc' => 'Read Malawi business news, economy, banking, trade, investment, energy, agriculture, jobs and market updates from Nyasa Times.', ), 'sports' => array( 'h1' => 'Malawi Sports News', 'title' => 'Malawi Sports News | Football, Netball & National Teams | Nyasa Times', 'desc' => 'Latest Malawi sports news, football, netball, athletics, clubs, national teams and Malawian athletes at home and abroad.', ), 'education' => array( 'h1' => 'Malawi Education News', 'title' => 'Malawi Education News | Schools, Universities & Exams | Nyasa Times', 'desc' => 'Malawi education news on schools, universities, exams, scholarships, teachers, students, policy updates and learning developments.', ), 'health' => array( 'h1' => 'Malawi Health News', 'title' => 'Malawi Health News | Healthcare & Public Health | Nyasa Times', 'desc' => 'Malawi health news on hospitals, public health, disease outbreaks, medicine, maternal health, children’s health and health policy.', ), 'entertainment' => array( 'h1' => 'Malawi Entertainment News', 'title' => 'Malawi Entertainment News | Music, Culture & Celebrities | Nyasa Times', 'desc' => 'Malawi entertainment news on music, culture, film, fashion, celebrities, festivals, events and creative industry updates.', ), 'columns' => array( 'h1' => 'Malawi Opinion & Analysis', 'title' => 'Malawi Opinion & Analysis | Columns & Commentary | Nyasa Times', 'desc' => 'Read Malawi opinion, columns, editorials and analysis on politics, governance, business, society, leadership and development.', ), 'religious-news' => array( 'h1' => 'Malawi Religion & Faith News', 'title' => 'Malawi Religion & Faith News | Churches & Community | Nyasa Times', 'desc' => 'Malawi religious news, church updates, faith events, Christian community stories, religious leaders and social impact coverage.', ), 'religion' => array( 'h1' => 'Malawi Religion & Faith News', 'title' => 'Malawi Religion & Faith News | Churches & Community | Nyasa Times', 'desc' => 'Malawi religious news, church updates, faith events, Christian community stories, religious leaders and social impact coverage.', ), ); } /** * --------------------------------------------------------- * CLEAN VISIBLE CATEGORY H1 * --------------------------------------------------------- * * Removes: * Category: * Category archives: * * and outputs a clean category heading. */ add_filter( 'get_the_archive_title', function ( $title, $original_title = '', $prefix = '' ) { if ( ! is_category() ) { return $title; } $term = get_queried_object(); if ( ! $term || empty( $term->slug ) ) { return $title; } $data = nyasa_times_category_seo_data(); if ( isset( $data[ $term->slug ]['h1'] ) ) { return $data[ $term->slug ]['h1']; } return single_cat_title( '', false ); }, 999, 3 ); /** * Remove archive prefixes. */ add_filter( 'get_the_archive_title_prefix', '__return_empty_string', 999 ); /** * --------------------------------------------------------- * AIOSEO SEO TITLE * --------------------------------------------------------- */ add_filter( 'aioseo_title', function ( $title ) { /** * Category SEO titles. */ if ( is_category() ) { $term = get_queried_object(); if ( $term && ! empty( $term->slug ) ) { $data = nyasa_times_category_seo_data(); if ( isset( $data[ $term->slug ]['title'] ) ) { return $data[ $term->slug ]['title']; } } } /** * News article SEO titles. * * Headline | Nyasa Times */ if ( is_singular( 'post' ) ) { return wp_strip_all_tags( get_the_title() ) . ' | Nyasa Times'; } return $title; }, 999 ); /** * --------------------------------------------------------- * AIOSEO CATEGORY META DESCRIPTIONS * --------------------------------------------------------- */ add_filter( 'aioseo_description', function ( $description ) { if ( ! is_category() ) { return $description; } $term = get_queried_object(); if ( ! $term || empty( $term->slug ) ) { return $description; } $data = nyasa_times_category_seo_data(); if ( isset( $data[ $term->slug ]['desc'] ) ) { return $data[ $term->slug ]['desc']; } return $description; }, 999 );

Banonie Mwale Foundation launches girl-child education project in Nkhotakota

Local charity, Banonie Mwale Foundation on Friday launched a school project that seeks to promote girl-child education in Nkhotakota.

Official opening of Banonie Mwale Foundation

Jenny Naylor, one of the ambassadors helping the foundation to mobilise resources for the projects presided over the official launch of the project at Msisita Village in Traditional Authority (T/A) Kanyenda in the district

She commended the foundation’s founder, Banonie Mwale, for the initiative which will lessen challenges hampering girl-child education in the area.

Naylor announced that the foundation, with support from other well-wishers from United Kingdom (UK) and United States of America (USA), is planning to support education and health sector projects.

“We are complementing Malawi Government’s effort to ensure that girls remain in school, especially in rural areas,” said Naylor.

In his remarks Mwale said the foundation will ensure that girls in T/A Kanyenda remain in school.

“When you educate a girl child, you educate the whole nation,” he said.

Mwale said the foundation came up with the initiative to keep girls in school.

Follow and Subscribe Nyasa TV :
Follow us in Twitter

2 replies on “Banonie Mwale Foundation launches girl-child education project in Nkhotakota”

  1. I would like to really appreciate you for this great work. Girl child education needs to get the priority to restore the balance of the economic development of the country. One of my friends is also working with the mission humanitaire afrique, they also work the social cause and work for the betterment of the country. He also suggested me to check this out http://www.mission-humanitaire-afrique.org to participate in humanitarian mission and help the needy ones.

Comments are closed.