Skip to content

Commit

Permalink
Course, UpsideDown: Remove copyright symbol (#7981)
Browse files Browse the repository at this point in the history
The copyright symbol in these themes was just positioned infront of
'Designed with...' which didn't make sense. Removing completely - users
would've needed to customise the pattern for the copyright to have made
sense anyway.
  • Loading branch information
dsas committed Jul 31, 2024
1 parent 29afa76 commit 1bfef10
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion course/patterns/footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
<?php
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'course' ) ) . '" rel="nofollow">WordPress</a>';
echo sprintf(
esc_html__( '© Designed with %1$s', 'course' ),
esc_html__( 'Designed with %1$s', 'course' ),
$wordpress_link
);
?>
Expand Down
4 changes: 2 additions & 2 deletions upsidedown/patterns/footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
/* Translators: WordPress link. */
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'upsidedown' ) ) . '" rel="nofollow">WordPress</a>';
echo sprintf(
esc_html__( '© Designed with %1$s', 'upsidedown' ),
esc_html__( 'Designed with %1$s', 'upsidedown' ),
$wordpress_link
);
?>
Expand All @@ -73,4 +73,4 @@
</div>
<!-- /wp:group -->
</div>
<!-- /wp:group -->
<!-- /wp:group -->

0 comments on commit 1bfef10

Please sign in to comment.