A WordPress block plugin that provides a professional about section with image and text layout. Perfect for introducing yourself or your business on any WordPress page.
- Clean, modern layout with image and text columns
- Responsive design with mobile-friendly padding
- Customizable background colors
- Support for rounded profile images
- Typography with Open Sans font (with system font fallbacks)
- Two-paragraph layout with different font sizes for visual hierarchy
- Full support for WordPress block alignment (wide/full)
Install the package using Composer:
composer require imagewize/about-block
- Upload the plugin files to the
/wp-content/plugins/about-block
directory, or install the plugin through the WordPress plugins screen directly. - Activate the plugin through the 'Plugins' screen in WordPress.
Your theme needs to have border support enabled for images. Add the following to your theme's theme.json
:
{
"settings": {
"blocks": {
"core/image": {
"border": {
"color": true,
"radius": true,
"style": true,
"width": true
}
}
}
}
}
Without these settings, you won't be able to adjust the border properties of the profile image in the block.
- Clone the repository
- Run
npm install
- Start development server:
npm run start
- Build production version:
npm run build
The development server will watch for changes and automatically rebuild the block.
Once added to your page, click on any text to edit it directly. You can also upload your own profile image by clicking the image placeholder.
Select the block and use the color settings in the right sidebar to modify the background color.
Select the block and use the alignment options in the toolbar to choose between default, wide, or full width.
Yes, the block template is now unlocked allowing you to add, remove, or rearrange blocks within it. However, we recommend maintaining the basic column structure for optimal appearance.
We recommend using a square image of at least 300x300 pixels for the profile picture. The image will automatically be cropped to a circle shape.
- Release and publication at Packagist