Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RSS Block: Add option to open links in new tab/window and control rel attributes #69641

Merged

Conversation

dhruvikpatel18
Copy link
Contributor

@dhruvikpatel18 dhruvikpatel18 commented Mar 20, 2025

Closes #49285

What?

This PR adds new options to the RSS block allowing users to:

  • Open RSS feed links in a new tab/window
  • Add custom rel attributes to links through a simple text input

Why?

When linking to external websites through an RSS feed, users often want the ability to:

  • Open links in a new tab to keep visitors on their site
  • Add rel attributes for SEO or linking purposes

Testing Instructions

  1. Add an RSS block to a post or page
  2. Enter a valid RSS feed URL
  3. In the block sidebar, locate the "Settings" panel
  4. Toggle "Open links in new tab" to ON and verify links open in a new tab
  5. Add rel attributes like "nofollow sponsored" in the "Link Rel" field in Advanced panel
  6. Verify that the HTML output includes all expected attributes

Screenshots or screencast

RSS.block.mov

@dhruvikpatel18 dhruvikpatel18 marked this pull request as ready for review March 20, 2025 11:36
Copy link

github-actions bot commented Mar 20, 2025

The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the props-bot label.

If you're merging code through a pull request on GitHub, copy and paste the following into the bottom of the merge commit message.

Co-authored-by: dhruvikpatel18 <[email protected]>
Co-authored-by: Mamaduka <[email protected]>
Co-authored-by: bhubbard <[email protected]>

To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook.

@Mamaduka Mamaduka added [Type] Enhancement A suggestion for improvement. [Block] RSS Affects the RSS Block - used to display entries from an RSS/Atom feed labels Mar 24, 2025
Comment on lines 47 to 53
"addNofollow": {
"type": "boolean",
"default": false
},
"additionalRelAttributes": {
"type": "string",
"default": ""
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think there's no need to have two separate attributes for rel. Maybe we should just display single text control, using a single attribute (linkRel) and let people input nofollow or any additional field as needed.


if ( ! empty( $attributes['openInNewTab'] ) ) {
$link_attributes .= ' target="_blank"';
$rel_attributes[] = 'noopener noreferrer';
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As far as I know, these values are no longer required. See related discussion in #26914.

@dhruvikpatel18
Copy link
Contributor Author

@Mamaduka Thank you for the feedback!

I've updated the implementation to address your suggestions:

  • Consolidated the rel attributes into a single linkRel attribute
  • Removed the separate addNofollow boolean
  • Simplified the input to a single text control for rel attributes
  • Removed automatic noopener noreferrer attributes as suggested

@dhruvikpatel18 dhruvikpatel18 requested a review from Mamaduka March 25, 2025 09:58
Copy link
Member

@Mamaduka Mamaduka left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you, @dhruvikpatel18!

I just remembered that the Social Icon block also has a custom "Rel" field, let's match UI and implementation (minus HTML API) to it.

P.S. Rebasing should resolve failing e2e tests.

Comment on lines 52 to 54
if ( ! empty( $rel_attributes ) ) {
$link_attributes .= ' rel="' . esc_attr( implode( ' ', array_unique( $rel_attributes ) ) ) . '"';
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is unnecessary; you're already assigning value above.

PS There're some WPCS violations in this file that also need to be fixed.

"type": "boolean",
"default": false
},
"linkRel": {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"linkRel": {
"rel": {

I just remembered that the Social Icons block also has a custom rel handler; let's make it consistent.

"rel": {
"type": "string"
}

Comment on lines 44 to 49
$rel_attributes = explode( ' ', $attributes['linkRel'] );
$rel_attributes = array_filter( array_map( 'sanitize_html_class', $rel_attributes ) );

if ( ! empty( $rel_attributes ) ) {
$link_attributes .= ' rel="' . esc_attr( implode( ' ', $rel_attributes ) ) . '"';
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we really need all this sanitization for escaped value? Could this be something like:

$link_attributes .= ' rel="' . esc_attr( trim( $attributes['rel'] ) ) . '"';

Comment on lines 46 to 56
$processor = new WP_HTML_Tag_Processor( "<a href='{$link}'>{$title}</a>" );
$processor->next_tag( 'a' );

if ( $open_in_new_tab ) {
$processor->set_attribute( 'target', '_blank' );
$processor->set_attribute( 'rel', trim( $rel . ' noopener nofollow' ) );
} elseif ( '' !== $rel ) {
$processor->set_attribute( 'rel', $rel );
}

$title = "<div class='wp-block-rss__item-title'>" . $processor->get_updated_html() . "</div>";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dhruvikpatel18, I'm sorry if my previous comment was unclear, but as I mentioned, we don't need to use HTML API here.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Mamaduka Sorry for misunderstanding your previous feedback, Removed HTML API usage.

Comment on lines 50 to 52
$link_attributes .= ' rel="' . esc_attr( trim( $rel . ' noopener nofollow' ) ) . '"';
} elseif ( '' !== $rel ) {
$link_attributes .= ' rel="' . esc_attr( trim( $rel ) ) . '"';
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can drop noopener. See: #26914 (comment).

Additionally, $rel is already trimmed above, and another trim call seems unnecessary.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also realized that this leaves nofollow hardcoded, and users won't be able to remove it, if the link opens in a new tab. Not 100% sure what the desired flow is here.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right about the hardcoded nofollow, actually it was there from previous implementation which i referred from social-link block.

@Mamaduka
Copy link
Member

@dhruvikpatel18, IIRC you can fix a failing JS unit test by running npm run fixtures:regenerate.

Comment on lines 48 to 56
if ( $open_in_new_tab ) {
$link_attributes .= ' target="_blank"';

if ( '' !== $rel ) {
$link_attributes .= ' rel="' . esc_attr( $rel ) . '"';
}
} elseif ( '' !== $rel ) {
$link_attributes .= ' rel="' . esc_attr( $rel ) . '"';
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggestion: The conditions here can be simplified.

if ( $open_in_new_tab ) {
	$link_attributes .= ' target="_blank"';
}

if ( '' !== $rel ) {
	$link_attributes .= ' rel="' . esc_attr( $rel ) . '"';
}

@dhruvikpatel18 dhruvikpatel18 requested a review from Mamaduka March 26, 2025 11:19
Copy link
Member

@Mamaduka Mamaduka left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you, @dhruvikpatel18!

The implementation looks good. There's one last nitpick, but generally, I think this is good to merge.

Comment on lines 48 to 54
if ( $open_in_new_tab ) {
$link_attributes .= ' target="_blank"';
}

if ( '' !== $rel ) {
$link_attributes .= ' rel="' . esc_attr( $rel ) . '"';
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One last item. I think we can move this outside of the loop. There's no need to recreate $link_attributes on each iteration. It doesn't require any values from $item.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, there is no need to recreate $link_attributes, I've updated it.

@dhruvikpatel18 dhruvikpatel18 requested a review from Mamaduka March 26, 2025 11:42
@Mamaduka Mamaduka merged commit 2014003 into WordPress:trunk Mar 26, 2025
61 checks passed
@github-actions github-actions bot added this to the Gutenberg 20.6 milestone Mar 26, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
[Block] RSS Affects the RSS Block - used to display entries from an RSS/Atom feed [Type] Enhancement A suggestion for improvement.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

RSS Block - Option to open links in new tab/window
2 participants