Skip to content

Instantly share code, notes, and snippets.

@strangerstudios
Created August 1, 2015 17:19
Show Gist options
  • Select an option

  • Save strangerstudios/088ce3403af75ab20c97 to your computer and use it in GitHub Desktop.

Select an option

Save strangerstudios/088ce3403af75ab20c97 to your computer and use it in GitHub Desktop.
Example SQL to copy PMPro page restrictions from one level to another.
#Copy PMPro page restrictions from level 1 to level 2. Change the 1 and 2 below to copy for different levels.
INSERT INTO wp_pmpro_memberships_pages (membership_id, page_id) SELECT 2, page_id FROM wp_pmpro_memberships_pages WHERE membership_id = 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment