Skip to content

Instantly share code, notes, and snippets.

@jonwaldstein
Last active November 28, 2018 20:45
Show Gist options
  • Save jonwaldstein/df2498be0b4755556d23acb3ba07dd40 to your computer and use it in GitHub Desktop.
Save jonwaldstein/df2498be0b4755556d23acb3ba07dd40 to your computer and use it in GitHub Desktop.
ACF Field Name Generator
var fieldNames = document.querySelectorAll('.li-field-name');
var fieldNameList = [];
fieldNames.forEach(function(name){
fieldNameList.push("$"+name.textContent.replace(/\s+/g, '')+" "+"="+" "+"get_field("+"'"+name.textContent.replace(/\s+/g, '')+"'"+");");
});
console.log(fieldNameList.join('\r\n'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment