Skip to content
This repository was archived by the owner on Apr 16, 2020. It is now read-only.

Commit 3b3033f

Browse files
committed
fixes #4 : Chybí nám parametr: parent-xxx
1 parent 989a679 commit 3b3033f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

functions.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
}
66

77
define( 'CRDM_BASIC_APP_PATH', realpath( get_stylesheet_directory() ) . DIRECTORY_SEPARATOR );
8-
define( 'CRDM_BASIC_APP_VERSION', '0.1.1' );
8+
define( 'CRDM_BASIC_APP_VERSION', '0.2' );
99
define( 'CRDM_BASIC_TEMPLATE_URL', trailingslashit( get_stylesheet_directory_uri() ) );
1010
define( 'CRDM_BASIC_PARENT_TEMPLATE_PATH', realpath( get_template_directory() ) . DIRECTORY_SEPARATOR );
1111
define( 'CRDM_BASIC_PARENT_TEMPLATE_URL', trailingslashit( get_template_directory_uri() ) );
@@ -38,7 +38,7 @@ protected function init() {
3838
}
3939

4040
protected function isCompatibleVersionOfWp() {
41-
if ( isset( $GLOBALS['wp_version'] ) && version_compare( $GLOBALS['wp_version'], '4.9.7', '>=' ) ) {
41+
if ( isset( $GLOBALS['wp_version'] ) && version_compare( $GLOBALS['wp_version'], '4.9.8', '>=' ) ) {
4242
return true;
4343
}
4444

@@ -58,7 +58,7 @@ public function switchToPreviousThemeIfIncompatibleVersionOfWpOrPhp() {
5858

5959
if ( ! $this->isCompatibleVersionOfWp() ) {
6060
add_action( 'admin_notices', function () {
61-
$this->showAdminNotice( esc_html__( 'Šablona ČRDM - základní vyžaduje verzi WordPress 4.9.7 nebo vyšší!', 'crdm-basic' ), 'warning' );
61+
$this->showAdminNotice( esc_html__( 'Šablona ČRDM - základní vyžaduje verzi WordPress 4.9.8 nebo vyšší!', 'crdm-basic' ), 'warning' );
6262
} );
6363
}
6464

readme.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
=== CRDM - Basic ===
22
Contributors: davidulus, skaut, kalich5
3-
Requires at least: 4.9.7
3+
Requires at least: 4.9.8
44
Tested up to: 5.0
55
Requires PHP: 7.0
6-
Version: 0.1.1
6+
Version: 0.2
77
License: GPLv3 or later
88
License URI: https://www.gnu.org/licenses/gpl-3.0.html
99
Tags: two-columns, three-columns, one-column, right-sidebar, left-sidebar, footer-widgets, blog, e-commerce, flexible-header, full-width-template, buddypress, custom-header, custom-background, custom-menu, custom-colors, sticky-post, threaded-comments, translation-ready, rtl-language-support, featured-images, theme-options
@@ -54,5 +54,5 @@ https://github.com/jhildenbiddle/get-css-data
5454

5555
== Changelog ==
5656

57-
= 0.1.1 =
57+
= 0.2 =
5858
* beta verze

style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1212
Text Domain: crdm-basic
1313
Tags: two-columns, three-columns, one-column, right-sidebar, left-sidebar, footer-widgets, blog, e-commerce, flexible-header, full-width-template, buddypress, custom-header, custom-background, custom-menu, custom-colors, sticky-post, threaded-comments, translation-ready, rtl-language-support, featured-images, theme-options
14-
Version: 0.1.1
14+
Version: 0.2
1515
*/

0 commit comments

Comments
 (0)