createElement( 'span' ); $screen_reader->setAttribute( 'class', 'screen-reader-text' ); $post_id = $object->context['postId'] ?? ''; $post_title = get_the_title( $post_id ); if ( ! $post_title ) { $post_title = __( 'this post', 'blockify' ); } $screen_reader->textContent = __( ' about ', 'blockify' ) . ( $post_title ); $more_link->appendChild( $screen_reader ); $block_content = $dom->saveHTML(); } } return $block_content; }