Block Picker Preview
Neue Block Preview Ansicht – Beispiel Inhalte generieren in der Vorschau
Last updated
Was this helpful?
Neue Block Preview Ansicht – Beispiel Inhalte generieren in der Vorschau
Last updated
Was this helpful?
Was this helpful?
import './style.scss';
// Import Components
import attributes from './globals/attributes';
import edit from './globals/edit';
// WP Packages
import { __ } from '@wordpress/i18n';
import { registerBlockType } from '@wordpress/blocks';
// // Add Repeater Field
registerBlockType( 'prwp-blocks/iconpicker', {
title: __('Icon Picker'),
description: 'Dies ist ein Iconpicker.',
category: 'prwpblocks',
icon: {
background: '#f0dd00',
foreground: '#222832',
src: 'star-half',
},
keywords: [
__( 'iconpicker' ),
__( 'icon' ),
__( 'dashicon' )
],
supports: {
html: false
},
attributes,
example: {
attributes: {
choosedIcon: 'fas fa-check',
iconAlign: 'center',
iconColorHex: '#f0dd00',
iconFontSize: 50,
iconContentsToggle: true,
iconContentHeadline: 'Hallo Welt',
iconContentDesc: 'Lorem Ipsum dolor sit amet'
}
},
edit,
save: ( props ) => {
return null
}
}); example: {
attributes: {
choosedIcon: 'fas fa-check',
iconAlign: 'center',
iconColorHex: '#f0dd00',
iconFontSize: 50,
iconContentsToggle: true,
iconContentHeadline: 'Hallo Welt',
iconContentDesc: 'Lorem Ipsum dolor sit amet'
}
}