This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"boss": true, | |
"curly": true, | |
"eqeqeq": true, | |
"eqnull": true, | |
"es3": true, | |
"expr": true, | |
"immed": true, | |
"noarg": true, | |
"onevar": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"boss": true, | |
"curly": true, | |
"eqeqeq": true, | |
"eqnull": true, | |
"es3": true, | |
"expr": true, | |
"immed": true, | |
"noarg": true, | |
"onevar": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hi there! | |
Thanks for creating a WordPress theme and submitting it to the WordPress.org directory! Since your theme also includes the accessibility-ready tag, I've also reviewed it according to those requirements, which you can find here: https://make.wordpress.org/themes/handbook/review/accessibility/ | |
Required | |
Anything in this section will need to be fixed before the theme can be approved. | |
Keyboard Navigation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Get files. | |
$directory = "/Users/dk/Desktop/articles/"; // Replace with the actual directory path | |
$iterator = new RecursiveIteratorIterator( | |
new RecursiveDirectoryIterator( | |
$directory, | |
RecursiveDirectoryIterator::SKIP_DOTS | |
), | |
RecursiveIteratorIterator::SELF_FIRST |