Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

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

Select an option

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
<?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