WebberZone / contextual-related-posts

Contextual Related Posts WordPress plugin
https://webberzone.com/plugins/contextual-related-posts/
38 stars 23 forks source link

wpmu_new_blog deprecated #155

Closed ajaydsouza closed 2 years ago

ajaydsouza commented 2 years ago

https://github.com/WebberZone/contextual-related-posts/blob/cb347764b8f83b8b56e40fd8fcb83562cdbaca52/includes/plugin-activator.php#L126

Use wp_initialize_site instead.

if ( version_compare( get_bloginfo( 'version' ), '5.1', '>=' ) ) {
    add_action( 'wp_initialize_site', 'crp_activate_new_site' );
} else {
    add_action( 'wpmu_new_blog', 'crp_activate_new_site' );
}