Skip to content

Instantly share code, notes, and snippets.

@wpweb101
Created January 4, 2019 12:59
Show Gist options
  • Select an option

  • Save wpweb101/4b986b56f3d2df36ecca9980941249cf to your computer and use it in GitHub Desktop.

Select an option

Save wpweb101/4b986b56f3d2df36ecca9980941249cf to your computer and use it in GitHub Desktop.
Follow My Blog Post - default selected the "Notify followers for this update" option to page or post
<?php
function wpw_fp_default_update_email_notify_field($notify_field) {
$notify_field['default'] = true;
return $notify_field;
}
// add filter to default check notify followers email checkbox
add_filter( 'wpw_fp_post_update_email_notify_field', 'wpw_fp_default_update_email_notify_field', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment