agencenous/blocss
最新稳定版本:0.3.0
Composer 安装命令:
composer require agencenous/blocss
包简介
CSS editor for elements in Wordpress blocks
README 文档
README
CSS editor for elements in Wordpress blocks
{
"attributes": {
"boxStyle": {
"type": "object",
"default": {
"fontSize": "1em",
"backgroudColor": "#ff0000"
}
},
"itemStyle": {
"type": "object",
"default": {
"fontSize": "1em",
"color": "#ffffff"
}
}
}
}
In the editor, use the npm library
npm install @agencenous/blocss
const { InspectorControls, useBlockProps } = wp.blockEditor; import { PanelBody } from '@wordpress/components'; import { StyleControl } from '@agencenous/blocss'; const blockProps = useBlockProps(); const { boxStyle, itemStyle, } = attributes; const edit = ({ setAttributes, attributes }) => { return ( <div className={className} {...blockProps}> <InspectorControls> <PanelBody title={__("Box")} initialOpen={true}> <StyleControl value={boxStyle} font={{ size: true, }} color={{ background: true }} onChange={(value) => setAttributes({ boxStyle: value })} /> </PanelBody> <PanelBody title={__("Items")} initialOpen={true}> <StyleControl value={itemStyle} font={{ size: true, }} color={{ text: true }} onChange={(value) => setAttributes({ itemStyle: value })} /> </PanelBody> </InspectorControls> </div> )};
In the callback, use the composer library
composer install agencenous/blocss
function myblock_render_callback($attributes) { $block_id = 'my-block-' . uniqid(); $css_rules = [ '.my-block' => $attributes['boxStyle'], '.my-block .block-item' => $attributes['itemStyle'], ]; return '<div id="'.esc_attr($block_id).'" class="my-block"> <h3>My block</h3> <div class="block-item">Item 1</div> <div class="block-item">Item 2</div> </div>'.Blocss\inline_styles($css_rules, '#' . $block_id); }
统计信息
- 总下载量: 66
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2025-11-27