File "index.js"

Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/generateblocks/src/utils/get-content-attribute/index.js
File size: 289 B (289 B bytes)
MIME-type: text/plain
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

export function getContentAttribute( attributes, blockName ) {
	let contentValue = '';

	if ( 'generateblocks/button' === blockName ) {
		contentValue = attributes.text;
	}

	if ( 'generateblocks/headline' === blockName ) {
		contentValue = attributes.content;
	}

	return contentValue;
}