Created
July 30, 2020 13:53
-
-
Save wpweb101/cda2dd4ba9d3b4598e22d417b8e70aa8 to your computer and use it in GitHub Desktop.
Social Auto Poster - Change the number of record per page for the manage schedule page
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 | |
| // code to Change the number of record per page for the manage schedule page | |
| function wpw_auto_poster_manage_schedule_page_record( $per_page ){ | |
| return '20'; // You can set the number of record per page | |
| } | |
| add_filter('wpw_auto_poster_manage_schedules_per_page','wpw_auto_poster_manage_schedule_page_record'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment