-
Notifications
You must be signed in to change notification settings - Fork 40
Missing Parts
Since WP-Flex isn't a silver bullet for everything related to a theme review, this page is a list of stuff to remind you what you're missing. Prior to your theme review -if you're using WP-Flex as your boilerplate- the following items need to be implemented...
###The Gotchyas
-
Themes are recommended to hook stylesheet and script enqueue callbacks into
wp_enqueue_scripts
. It is not recommended that a theme force a 3rd party served JavaScript or CSS file by default, Doing so opens the users up to reliance upon a external host which is out of their control. A much better alternative is to use/recomend a Plugin such as Plugin: Use Google Libraries which automatically uses the Google-CDN served jQuery of the same version that WordPress uses this ultimately reduces breakage caused by Themes/Plugins which hardcode the file to use. http://wordpress.org/extend/plugins/use-google-libraries -
Themes are recommended to hook stylesheets using
wp_enqueue_scripts
####WordPress Theme Review Codex http://codex.wordpress.org/Theme_Review