Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions thisismyurl-external-link-control.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public function enqueue_admin_assets( $hook ) {
'timu-elc-admin',
plugins_url( 'assets/css/admin.css', __FILE__ ),
array(),
'1.6148'
'1.6149.0734'
);
}
}
Expand Down Expand Up @@ -341,10 +341,13 @@ public function render_plugin_admin_ui() {
<?php esc_html_e( 'External Link Control', 'thisismyurl-external-link-control' ); ?>
<span class="timu-elc-byline">
<?php
printf(
/* translators: %s: brand name "thisismyurl.com" rendered as a link. */
esc_html__( 'by %s', 'thisismyurl-external-link-control' ),
'<a href="https://thisismyurl.com/" target="_blank" rel="noopener noreferrer" class="timu-elc-byline-link">thisismyurl.com</a>'
echo wp_kses(
sprintf(
/* translators: %s: brand name "thisismyurl.com" rendered as a link. */
__( 'by %s', 'thisismyurl-external-link-control' ),
'<a href="https://thisismyurl.com/" target="_blank" rel="noopener noreferrer" class="timu-elc-byline-link">thisismyurl.com</a>'
),
array( 'a' => array( 'href' => array(), 'target' => array(), 'rel' => array(), 'class' => array() ) )
);
?>
</span>
Expand Down
Loading