Skip to content

Commit

Permalink
Merge pull request #158 from 10up/fix/149-update-footer-link-to-use-h…
Browse files Browse the repository at this point in the history
…ttps

FIx | Update footer links to use https
  • Loading branch information
darylldoyle authored Jul 25, 2024
2 parents 523ccea + 83d161f commit c010d61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/classes/AdminCustomizations/Customizations.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function main_screen() {
?>
</div>

<a class="tenup-badge" href="http://10up.com" target="_blank"><span aria-label="<?php esc_attr_e( 'Link to 10up.com', 'tenup' ); ?>">10up.com</span></a>
<a class="tenup-badge" href="https://10up.com" target="_blank"><span aria-label="<?php esc_attr_e( 'Link to 10up.com', 'tenup' ); ?>">10up.com</span></a>

<div class="feature-section one-col">
<h2><?php esc_html_e( 'Thanks for working with team 10up!', 'tenup' ); ?></h2>
Expand Down Expand Up @@ -191,7 +191,7 @@ public function enqueue_scripts() {
* @return string
*/
public function filter_admin_footer_text() {
$new_text = sprintf( __( 'Thank you for creating with <a href="https://wordpress.org">WordPress</a> and <a href="http://10up.com">10up</a>.', 'tenup' ) );
$new_text = sprintf( __( 'Thank you for creating with <a href="https://wordpress.org">WordPress</a> and <a href="https://10up.com">10up</a>.', 'tenup' ) );
return $new_text;
}
}

0 comments on commit c010d61

Please sign in to comment.