wp_back/wp-content/plugins/visual-portfolio/gutenberg/block-saved/transforms.js

19 lines
283 B
JavaScript
Raw Normal View History

2024-05-20 15:37:46 +03:00
export default {
from: [
{
type: 'shortcode',
tag: 'visual_portfolio',
attributes: {
id: {
type: 'string',
shortcode: (data) => data.named.id,
},
className: {
type: 'string',
shortcode: (data) => data.named.class,
},
},
},
],
};