Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
generateblocks
/
src
/
utils
/
get-content-attribute
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
export function getContentAttribute( attributes, blockName ) { let contentValue = ''; if ( 'generateblocks/button' === blockName ) { contentValue = attributes.text; } if ( 'generateblocks/headline' === blockName ) { contentValue = attributes.content; } return contentValue; }