…and you plan to submit your theme to the WordPress Theme Repository.
Let me point out some issues, that Themes, which derive from Starter Themes, frequently get flagged for by Reviewers
…and you plan to submit your theme to the WordPress Theme Repository.
Let me point out some issues, that Themes, which derive from Starter Themes, frequently get flagged for by Reviewers
An awesome code snippet that I just found in Automattic’s _s Theme:
/** * Filter in a link to a content ID attribute for the next/previous image links on image attachment pages * * @since _s 1.0 */ function _s_enhanced_image_navigation( $url, $id ) { if ( ! is_attachment() && ! wp_attachment_is_image( $id ) ) return $url; $image = get_post( $id ); if ( $image->post_parent && $image->post_parent != $id ) $url .= '#main'; return $url; } add_filter( 'attachment_link', '_s_enhanced_image_navigation', 10, 2 );
This adds the #main
attribute to image attachment links, so that the enduser always sees the attachment instantly and doesn’t have to scroll down. Especially handy in when you click through a post gallery!
A couple of days ago, WP Display Header surpassed the 10,000 downloads mark! #woohoo
An awesome presentation by Mark Jaquith, a must-read for all WordPress Plugin authors!
The Bootstrap is a clean, friendly, modern WordPress Theme, with a great image and gallery handling, based on Bootstrap from Twitter.
It is the first Theme I submitted to the WordPress Theme Repository.