Disable review notice in Yet Another Related Posts Plugin (YARPP)

Disable review notice in Yet Another Related Posts Plugin (YARPP) on child sites.

Snippet Type

Execute on Child Sites

Snippet

function yarpp_disable_review_notice() {
  remove_action( 'admin_notices', array('YARPP_Admin', 'display_review_notice' ) );
}
add_action( 'admin_init', 'yarpp_disable_review_notice', 11 );
2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.