Skip to content

Commit ea51526

Browse files
authored
Merge pull request #29 from wpkitpro/release/1.0.5
Release/1.0.5
2 parents 32f60cf + 899aabb commit ea51526

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

assets/sass/style.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Theme URI: https://wpkit.pro/themes/wpkit-elementor/
44
Description: WP Kit Elementor is a versatile and streamlined WordPress theme meticulously crafted to integrate seamlessly with the Elementor page builder plugin. This free and open-source theme is tailored for users seeking a nimble, user-friendly, and highly customizable website. Engineered for optimal performance, WP Kit Elementor establishes a robust groundwork, empowering users to fashion distinctive designs effortlessly through the intuitive Elementor drag-and-drop site builder. With its user-centric simplicity and adaptable features, WP Kit Elementor stands out as an excellent choice for both novices and seasoned web creators alike.
55
Author: WP Kit
66
Author URI: https://wpkit.pro
7-
Version: 1.0.4
8-
Stable tag: 1.0.4
7+
Version: 1.0.5
8+
Stable tag: 1.0.5
99
Requires at least: 6.0
1010
Tested up to: 6.4
1111
Requires PHP: 7.3

functions.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
exit; // Exit if accessed directly.
1010
}
1111

12-
define( 'WPKIT_ELEMENTOR_VERSION', '1.0.4' );
12+
define( 'WPKIT_ELEMENTOR_VERSION', '1.0.5' );
1313

14-
function setup() {
14+
function wp_kit_elementor_setup() {
1515
// Add default posts and comments RSS feed links to head
1616
add_theme_support( 'automatic-feed-links' );
1717

@@ -80,9 +80,9 @@ function setup() {
8080
}
8181
}
8282

83-
add_action( 'after_setup_theme', 'setup' );
83+
add_action( 'after_setup_theme', 'wp_kit_elementor_setup' );
8484

85-
function scripts() {
85+
function wp_kit_elementor_scripts() {
8686
$min_suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
8787

8888
// Theme Stylesheet
@@ -106,4 +106,4 @@ function scripts() {
106106
);
107107
}
108108

109-
add_action( 'wp_enqueue_scripts', 'scripts' );
109+
add_action( 'wp_enqueue_scripts', 'wp_kit_elementor_scripts' );

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "wp-kit-elementor-theme",
3-
"slug": "wp-kit-elementor-theme",
2+
"name": "wp-kit-elementor",
3+
"slug": "wp-kit-elementor",
44
"homepage": "https://wpkit.pro",
55
"description": "A sample WordPress theme for Elementor page builder.",
6-
"version": "1.0.4",
6+
"version": "1.0.5",
77
"private": true,
88
"scripts": {
99
"update-version": "node .github/scripts/update-version-in-files.js",

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@ Source: https://stocksnap.io/photo/BHIL9FV6RK
4242

4343
== Changelog ==
4444

45-
= 1.0.4-beta1 - 2024-01-13 =
45+
= 1.0.5 - 2024-01-21 =
46+
Refactor function names in WpKit Elementor theme
47+
48+
= 1.0.4 - 2024-01-13 =
4649
* Tweak: Updated theme metadata in the style.css file
4750
* Tweak: Add enqueue theme stylesheet code in functions.php
4851
* Tweak: Refactor theme function file for wp-kit-elementor

0 commit comments

Comments
 (0)