File tree Expand file tree Collapse file tree 5 files changed +18
-7
lines changed Expand file tree Collapse file tree 5 files changed +18
-7
lines changed Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## [ 3.0.2] - 2024-04-10
6
+ - Added: Add CHANGELOG.md to WPKit theme
7
+ - Changed: Update WPKit theme version
8
+ - Changed: A 'WPKIT_VERSION' constant has been defined in the functions.php file to standardize the versioning system in WPKit theme.
9
+ - Removed: Redundant whitespace has been removed from the header.php file to clean up the code and improve its readability.
10
+ - Fixed: The loop processing posts in the wpkit theme's index page has been modified to include 'the_post()'
Original file line number Diff line number Diff line change 7
7
exit ; // Exit if accessed directly.
8
8
}
9
9
10
+ define ('WPKIT_VERSION ' , '3.0.2 ' );
11
+
10
12
/** Include template functions */
11
13
require_once get_template_directory () . '/inc/setup.php ' ;
12
14
Original file line number Diff line number Diff line change 5
5
6
6
get_header ();
7
7
?>
8
- <?php while ( have_posts () ): ?>
9
- <article id="post-<?php the_ID (); ?> " <?php post_class (); ?> >
10
- <?php the_content (); ?>
11
- </article><!-- #post-<?php the_ID (); ?> -->
12
- <?php endwhile ; ?>
8
+ <?php while ( have_posts () ): the_post (); ?>
9
+ <article id="post-<?php the_ID (); ?> " <?php post_class (); ?> >
10
+ <?php the_content (); ?>
11
+ </article><!-- #post-<?php the_ID (); ?> -->
12
+ <?php endwhile ; ?>
13
13
<?php
14
14
get_footer ();
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Theme URI: https://wpkit.pro/themes/wpkit/
4
4
Description: WordPress starter theme with Bootstrap CSS/JS and a modern development workflow.
5
5
Author: WpKit
6
6
Author URI: https://wpkit.pro
7
- Version: 3.0.1
7
+ Version: 3.0.2
8
8
Requires at least: 6.0
9
9
Tested up to: 6.4
10
10
Requires PHP: 7.3
Original file line number Diff line number Diff line change 6
6
if ( ! defined ( 'ABSPATH ' ) ) {
7
7
exit ; // Exit if accessed directly.
8
8
}
9
-
10
9
?>
11
10
12
11
<header id="masthead" class="banner">
You can’t perform that action at this time.
0 commit comments