In what way is the
Tag Cloudblock different?
That block is a dynamic block, which uses a live rendering using ServerSideRender, and the documentation stated that “If you pass attributes to ServerSideRender, the block must also be registered and have its attributes defined in PHP“, therefore, custom attributes for the block must be defined in PHP as well and not just JavaScript.
To fix the issue, you can use the register_block_type_args filter to add the blockAnimationClass attribute. E.g.
add_filter( 'register_block_type_args', 'my_add_custom_block_type_attributes' );
function my_add_custom_block_type_attributes( $args ) {
$args['attributes']['blockAnimationClass'] = array(
'type' => 'string',
'default' => '',
);
return $args;
}
Related Posts:
- Gutenberg disable the “block” tab in right sidebar
- How to change the order of HTML output of a core block?
- Gutenberg – Add align controls to a custom block
- Detect when gutenberg editor title is available in Dom after editor load
- Gutenberg Block – Post Featured Image Filter Hook
- Set default value for “Additional CSS class(es)” for specific block types
- How to pass/get data to/from the WooCommerce data-product_variations object?
- What does (10, 2) mean when used with add_filter
- Clarification on filters and hooks
- Passing Additional Parameters to add_filter Callable
- Modify WordPress Rest Api Request/Response
- How to add some custom HTML into wordpress admin bar?
- Custom theme hooks / filters – passing arguments
- How to hook wp_list_pages?
- How to make post and comment count unclickable with dashboard_glance_items hook
- How to use the_excerpt in a filter hook?
- Hook into admin post list page
- How to limit the pages displayed for choosing parent page on page attribute’s menu?
- How can I hide all posts that don’t have a thumbnail?
- Should I use add_action(‘publish_post or add_filter(‘publish_post?
- How can I reliably and globally disable wptexturize?
- Customise Jetpack Publicize text
- WordPress RSS feed – filter RSS content by custom field value
- filter the_title problem in nav
- Filter the URL of next_posts_link & previous_posts_link
- Changing Gutenberg / WP block editor width only on pages, not posts or other taxonomies
- How to replace any occurence of Gravatars with a local placeholder image?
- Sensei LMS Hooks to Remove Content
- What hook/filter can I use to add/edit/show/hide the title under (on hover) links on the table view?
- Change WordPress RSS link with filter?
- Add a header before fields added with the attachment_fields_to_edit() filter
- Hide content editor for posts after approriate date
- How do I replace a render_callback function for a block?
- Why my admin doesn’t work after adding rest_prepare_post filter?
- add_filter() function misunderstanding
- When to use actions and when to use filters
- add_filter to ‘woocommerce_before_main_content’ [closed]
- Editing
- Same Conditionals Not Working on Two Different Hooks
- Filter or Hook to catch pre-rendering of post content
- check to see if hook is available
- How do I target a single page to modify the comment form of only that page?
- How to removes all instances of thumbnails displayed in my theme?
- Insert term when page is published – avoid duplicates after edits
- When does a function assigned to the content_filtered_edit_pre filter hook fire?
- Capture post content before page renders
- Remove_action does not work
- How to remove action with slashes and arrows?
- Can the wordpress color palettes by changed through Javascript?
- Inline Styles on all native blocks
- Add content as soon starts
- Make an array filterable per hook
- Changing WordPress core without hacking core
- How do I add a checkmark to my-sites save settings hook
- Comment search plugin
- how to customize rss feed tags using hooks?
- How to filter backend post list showing only posts having a shortcode
- Add Lightbox To WordPress Native Gallery
- What hooks to hook onto for automatic cache clearing
- Modify Redux Framework Options in Child Theme
- How to customize category_description()?
- How can I output all apply_filters and do_action?
- Is it possible to bind a function to a filter hook via Ajax?
- How do I hook my function to run only after submitting login form
- How to add a filter to the get_body_class function?
- Prepending character(s) to a custom tag title?
- How to hide/remove GhostKit component panel in gutenberg block inspector
- Modify existing plugin function with add_filter
- How to override include_once pointed file using add_filter?
- Remove tags without a specific meta key from “choose from the most used tags”
- What is the action hook to use if you want to capture the new password during password change?
- an action hook when a post reaches a certain number of views
- Action hook to control access to certain parts of my site
- Need to return shortcode text instead of the output
- Is there any reason for the nested filters to be applied on the first case and not in the second one?
- Replace Data In Post & Update Meta Field Post Is Saved
- How to optionally append components to the output of a gutenberg block?
- How to add custom media library mime icons?
- WordPress Gutenberg core/heading block (wp-block-heading)
- How do I check if I can use the allowed_block_types filter?
- Add an attribute to the root from functions.php with add_filter
- Would like to use hook or filters to customize email templates
- Remove image of srcset
- Security question – Display a General Custom Login Error Message
- Filter wp_mail based on content type
- Add HTML to the bottom of each post in a post list
- Hook inside a hook
- Incrementing content with extra text after save/publish
- wp_editor customization
- WP Dashboard -> Posts-> Filter by Category -> Form Method Change : Which Hook
- Add class to all parent elements inside the_content
- Filter dashboard custom post listing by user
- Admin New Order: Autofocus on Search a product
- NextGEN Gallery: Adding drop-down menu widget to gallery view without modifying plugin code [closed]
- How to filter part of a variable if it is no array?
- How do you disable the verification process of user email changes?
- How to change this WP logo and posts url in block editor?
- Passing value from one hook to another
- How to Dynamically Switch WordPress Front Page Without Causing Canonical Redirect?
- How to add custom field to top of WordPress Comment Form for both logged in and anon users