Skip to content

Instantly share code, notes, and snippets.

@lizardking8610
Created June 5, 2019 02:25
Show Gist options
  • Save lizardking8610/e78880bfd7ddc49776a46d4eefc6fdc7 to your computer and use it in GitHub Desktop.
Save lizardking8610/e78880bfd7ddc49776a46d4eefc6fdc7 to your computer and use it in GitHub Desktop.
Elementor nofollow noopener
if ( $settings['link']['is_external'] ) {
$this->add_render_attribute( 'button', 'target', '_blank' );
}
if ( $settings['link']['nofollow'] ) {
$this->add_render_attribute( 'button', 'rel', 'nofollow' );
}
if ( $settings['link']['is_external'] && $settings['link']['nofollow'] ) {
$this->add_render_attribute( 'button', 'target', '_blank' );
$this->add_render_attribute( 'button', 'rel', 'noopener' );
} else {
if ( $settings['link']['is_external'] ) {
$this->add_render_attribute( 'button', 'target', '_blank' );
}
if ( $settings['link']['nofollow'] ) {
$this->add_render_attribute( 'button', 'rel', 'nofollow' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment