Guest User

Untitled

a guest
Jan 21st, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. var dirtyCustomized = {};
  2.  
  3. wp.customize.each(function (value, key) {
  4. if (value._dirty) {
  5. dirtyCustomized[key] = value();
  6. }
  7. });
  8.  
  9. console.log('the changed (dirty) settings: (' +
  10. Object.keys(dirtyCustomized).length + ') ', dirtyCustomized)
Add Comment
Please, Sign In to add comment