Created
January 4, 2019 12:59
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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