Hi Rostyslav,
Try adding add-nofollow
to the class list of the Headline Block in its advanced settings.
Then, add this snippet:
add_filter( 'render_block', function( $block_content, $block ) {
if ( !is_admin() && 'generateblocks/headline' === $block['blockName'] && ! empty( $block['attrs']['className'] ) && 'add-nofollow' === $block['attrs']['className'] ) {
$block_content = str_replace( '<a ', '<a rel="nofollow" ', $block_content );
}
return $block_content;
}, 10, 2 );
Adding PHP reference: https://docs.generatepress.com/article/adding-php/#code-snippets