-
Notifications
You must be signed in to change notification settings - Fork 2
inc2734/Kotetsu
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
=== Kotetsu === Theme Name: Kotetsu Theme URI: https://github.com/inc2734/kotetsu/ Description: Kotetsu is a simple theme for the blog. This theme is responsive, supports desktop( 1280 and 1024 ), tablets and smartphones. Features, using Sass and PHP Class in functions.php. So this theme is for developers! Author: inc2734 Author URI: http://2inc.org Version: 1.0.6 License: GNU General Public License v2.0 License URI: http://www.gnu.org/licenses/gpl-2.0.html Tags: blue, white, right-sidebar, responsive-layout, editor-style, sticky-post, microformats, featured-images, custom-colors, custom-menu == Installation == = Installation using "Add New Theme" = 1. From your Admin UI (Dashboard), go to Appearance => Themes. Click the "Add New" button. 2. Search for theme, or click the "Upload" button, and then select the theme you want to install. 3. Click the "Install Now" button. = Manual installation = 1. Upload the "kotetsu" folder to the "/wp-content/themes/" directory. = Activiation and Use = 1. Activate the Theme through the "Themes" menu in WordPress. == The following third-party resources == HTML5 Shiv License: MIT/GPL2 License Source : https://github.com/aFarkas/html5shiv Genericons License: GPL Source : http://genericons.com/ == Theme features == = Using child theme = This is a example of customizing functions.php in child theme. ` function kotetsu_child_theme_setup() { class Kotetsu extends KotetsuBaseFunctions { // Override constructer public function __construct() { parent::__construct(); // Add filter add_filter( 'foo', array( $this, 'your_filter' ) ); } public function your_filter( $bar ) { return $bar; } // Override parent method public function parent_method { // Your code! } } } add_action( 'after_setup_theme', 'kotetsu_child_theme_setup' ); // It is all right outside the class! function your_filter( $bar ) { return $bar; } add_filter( 'foo', 'your_filter' ); ` == Changelog == = 1.0.6 = * Fixed a wp_title customization function bug. = 1.0.5 = * Fixed a postbyauthor css bug. * Fixed a bug that global navigation for pc is displayed at smartphone. * Offcanvas navigation button is changed to text. * If logo image is not setted, displaying blog name. * Trackback area styling. * Fixed some theme check errors. = 1.0.4 = * Fixed a bug that are not changed even if uploaded a logo in customization page. = 1.0.3 = * Changed the text domain. * Added following third-party resources information. * Always return the theme option value when theme option is empty in admin page. * Changed 404 page heading. * HTML5 Shiv has been updated to 3.7.2. * jquery.responsive-nav has been updated to 1.0.7. = 1.0.0 = * Initial Release
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Packages 0
No packages published