├── .github └── FUNDING.yml ├── README.md ├── comments.php ├── functions.php ├── index.php ├── languages ├── en_GB.mo ├── en_GB.po ├── fa_IR.mo └── fa_IR.po ├── readme.txt ├── rtl.css ├── screenshot.png └── style.css /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: 'https://zarinp.al/smmirr' 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | A simple minimal WordPress theme built with only what is needed to survive 3 | 4 | Less is a super minimal theme, both front end and back end. adding no bloat whatesover. It only uses the minimum requirements that WordPress has, a stylesheet, screenshot and the index page. 5 | Less Reloaded is modefied version that works with WordPress 5 and it's translation ready and it support rtl. 6 | 7 | 8 | == Copyright == 9 | 10 | Less Reloaded Theme is based on Less Theme © Jared Erickson, GPL License - https://github.com/alliswell/Less 11 | Less Reloaded Theme is distributed under the terms of the GNU GPL 12 | 13 | == Changelog == 14 | 15 | = 1.0.3 = 16 | * Fix 404 error 17 | * Update screenshot 18 | * Update readme.txt 19 | 20 | = 1.0.2 = 21 | * Update screenshot 22 | * Remove fitvids.js due to WordPress new embeds 23 | * Move pingback_url to function.php and add a conditional for it 24 | * Remove break_credits action in footer 25 | * Add Google font with wp_enqueue_style 26 | 27 | = 1.0.1 = 28 | * Update readme.txt 29 | * Update Copyright 30 | * Update screenshot 31 | * Some fixes 32 | 33 | = 1.0 = 34 | * Initial release 35 | -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- 1 |