This commit is contained in:
Alexander Agnarson 2021-04-20 17:46:24 +02:00
parent c52d66cdc8
commit 5b5954ad49
5 changed files with 41 additions and 6 deletions

View file

@ -63,7 +63,7 @@
<?php if ( get_theme_mod( 'credit', 'on' ) == 'on' ): ?>
<div id="credit">
<p><?php esc_html_e('Powered by','clearwork'); ?> <a href="http://wordpress.org" rel="nofollow">WordPress</a>. <?php esc_html_e('Theme by','clearwork'); ?> <a href="http://alx.media" rel="nofollow">Alx</a>.</p>
<p><?php esc_html_e('Powered by','clearwork'); ?> <a href="<?php esc_url( __( 'https://wordpress.org', 'clearwork' ) ); ?>" rel="nofollow">WordPress</a>. <?php esc_html_e('Theme by','clearwork'); ?> <a href="http://alx.media" rel="nofollow">Alx</a>.</p>
</div><!--/#credit-->
<?php endif; ?>

View file

@ -4,9 +4,9 @@
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="profile" href="https://gmpg.org/xfn/11">
<?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?>
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
<?php endif; ?>
<?php wp_head(); ?>

View file

@ -2,7 +2,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Clearwork\n"
"POT-Creation-Date: 2021-03-08 18:58+0100\n"
"POT-Creation-Date: 2021-04-20 17:28+0200\n"
"PO-Revision-Date: 2018-09-21 21:27+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
@ -51,6 +51,10 @@ msgstr ""
msgid "Powered by"
msgstr ""
#: footer.php:66
msgid "https://wordpress.org"
msgstr ""
#: footer.php:66
msgid "Theme by"
msgstr ""

View file

@ -67,8 +67,35 @@ Screenshot images
License: CC0 1.0 Universal (CC0 1.0)
Source: https://stocksnap.io
Sidebar image
1. https://stocksnap.io/photo/OGBFDCHPEZ - CC0 1.0 Universal (CC0 1.0)
Content images
1. https://stocksnap.io/photo/ZCIZ1AWXTC - CC0 1.0 Universal (CC0 1.0)
2. https://stocksnap.io/photo/UB2UXMASSW - CC0 1.0 Universal (CC0 1.0)
3. https://stocksnap.io/photo/TQ30QBDKB4 - CC0 1.0 Universal (CC0 1.0)
4. https://stocksnap.io/photo/2UDYPUZY3L - CC0 1.0 Universal (CC0 1.0)
5. https://stocksnap.io/photo/C31CLWIU4T - CC0 1.0 Universal (CC0 1.0)
6. https://stocksnap.io/photo/N7FUTW0RY5 - CC0 1.0 Universal (CC0 1.0)
7. https://stocksnap.io/photo/YO7RLUH3TY - CC0 1.0 Universal (CC0 1.0)
8. https://stocksnap.io/photo/JRHSFSKQZQ - CC0 1.0 Universal (CC0 1.0)
9. https://stocksnap.io/photo/49FQQBTLIN - CC0 1.0 Universal (CC0 1.0)
10. https://stocksnap.io/photo/B65VCAYIUF - CC0 1.0 Universal (CC0 1.0)
11. https://stocksnap.io/photo/KSC88QWZBR - CC0 1.0 Universal (CC0 1.0)
12. https://stocksnap.io/photo/0NML1Q2CFH - CC0 1.0 Universal (CC0 1.0)
13. https://stocksnap.io/photo/5FG8M40K0N - CC0 1.0 Universal (CC0 1.0)
== Changelog ==
= 1.0.3 - 2021-04-20 =
* Fixed: more visible focus style of search button
* Fixed: visible focus states on mobile menu
* Fixed: echo, escape and get_ pingback_url
* Fixed: footer wordpress link translatable
* Added screenshot images to readme
* Updated language files
= 1.0.2 - 2021-03-08 =
* Removed premium theme updater code
* Updated language files

View file

@ -1,7 +1,7 @@
/*
Theme Name: Clearwork
Theme URI: http://alx.media/themes/clearwork/
Version: 1.0.2
Version: 1.0.3
Requires at least: 5.0
Requires PHP: 5.6
Tested up to: 5.6
@ -703,7 +703,9 @@ box-shadow: 0 0 2px rgba(255,255,255,0.4);
.toggle-search .svg-icon { fill: #333; margin: 0 auto; }
.toggle-search #svg-close { display: none; }
.toggle-search.active #svg-search { display: none; }
.toggle-search.active #svg-close { display: block; }
.toggle-search.active #svg-close { display: block; fill: rgba(0,0,0,0.4); }
.toggle-search:focus #svg-search { fill: rgba(0,0,0,0.4); }
.toggle-search:focus #svg-close { fill: #333; }
/* ------------------------------------------------------------------------- *
@ -800,6 +802,8 @@ box-shadow: 0 0 2px rgba(255,255,255,0.4);
.nav-menu.mobile.toggled > div > ul.menu ul.sub-menu { visibility: hidden; transition: all 0.3s ease; }
.nav-menu.mobile.toggled > div > ul.menu,
.nav-menu.mobile.toggled > div > ul.menu ul.sub-menu.active { visibility: visible; }
.nav-menu.mobile button:focus,
.menu-toggle:focus { background: rgba(0,0,0,0.04); }
/* menu styling */
.nav-menu a { color: #fff; }