Skip to content
Snippets Groups Projects
Commit e8e92e5b authored by ale's avatar ale
Browse files

Fix cr/lf in 0187-twentyfourteen

Related to issue #15.
parent 58721128
No related branches found
No related tags found
No related merge requests found
......@@ -2,52 +2,17 @@ diff --git a/wp-content/themes/twentyfourteen/footer.php b/wp-content/themes/twe
index d1016eb9..51bd4833 100644
--- a/wp-content/themes/twentyfourteen/footer.php
+++ b/wp-content/themes/twentyfourteen/footer.php
@@ -23,9 +23,7 @@
the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
}
?>
- <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfourteen' ) ); ?>" class="imprint">
- <?php printf( __( 'Proudly powered by %s', 'twentyfourteen' ), 'WordPress' ); ?>
- </a>
+ <strong>Proudly powered by <a href="http://www.autistici.org">R*</a></strong>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
diff --git a/wp-content/themes/twentyfourteen/functions.php b/wp-content/themes/twentyfourteen/functions.php
index c017dac6..ec71dff8 100644
--- a/wp-content/themes/twentyfourteen/functions.php
+++ b/wp-content/themes/twentyfourteen/functions.php
@@ -288,17 +288,6 @@ add_action( 'widgets_init', 'twentyfourteen_widgets_init' );
*/
function twentyfourteen_font_url() {
$font_url = '';
- /*
- * Translators: If there are characters in your language that are not supported
- * by Lato, translate this to 'off'. Do not translate into your own language.
- */
- if ( 'off' !== _x( 'on', 'Lato font: on or off', 'twentyfourteen' ) ) {
- $query_args = array(
- 'family' => urlencode( 'Lato:300,400,700,900,300italic,400italic,700italic' ),
- 'subset' => urlencode( 'latin,latin-ext' ),
- );
- $font_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
- }
return $font_url;
}
@@ -372,6 +361,7 @@ add_action( 'admin_print_scripts-appearance_page_custom-header', 'twentyfourteen
* @param string $relation_type The relation type the URLs are printed.
* @return array URLs to print for resource hints.
*/
+/*
function twentyfourteen_resource_hints( $urls, $relation_type ) {
if ( wp_style_is( 'twentyfourteen-lato', 'queue' ) && 'preconnect' === $relation_type ) {
if ( version_compare( $GLOBALS['wp_version'], '4.7-alpha', '>=' ) ) {
@@ -387,6 +377,7 @@ function twentyfourteen_resource_hints( $urls, $relation_type ) {
return $urls;
}
add_filter( 'wp_resource_hints', 'twentyfourteen_resource_hints', 10, 2 );
+*/
/**
* Enqueue styles for the block-based editor.
@@ -23,12 +23,7 @@
the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
}
?>
- <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfourteen' ) ); ?>" class="imprint">
- <?php
- /* translators: %s: WordPress */
- printf( __( 'Proudly powered by %s', 'twentyfourteen' ), 'WordPress' );
- ?>
- </a>
+ <strong>Proudly powered by <a href="http://www.autistici.org">R*</a></strong>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment