Attachments (5)

steira-postform-image-linke.jpg (37.6 KB) - added by mercime 18 months ago.
steira-images-test-3.jpg (20.2 KB) - added by mercime 18 months ago.
steira-layout-test-3.gif (12.2 KB) - added by mercime 18 months ago.
steira-sidebar-list-pages.jpg (28.6 KB) - added by mercime 18 months ago.
steira-elements-in-comments.gif (18.1 KB) - added by mercime 18 months ago.

Download all attachments as: .zip

Change History (7)

comment:1 Changed 18 months ago by mercime

  • Owner set to mercime
  • Status changed from new to assigned

Changed 18 months ago by mercime

Changed 18 months ago by mercime

Changed 18 months ago by mercime

Changed 18 months ago by mercime

Changed 18 months ago by mercime

comment:2 Changed 18 months ago by mercime

  • Resolution set to not-approved
  • Status changed from assigned to closed

Theme Unit Tests

Has Issues.

Code Quality

Has Issues.

e.g. in functions.php, change

 function newgravatar ( $avatar_defaults ) {
 // code
 }
 add_filter( 'avatar_defaults', 'newgravatar' );

to

 function steira_newgravatar ( $avatar_defaults ) {
 // code
 }
 add_filter( 'avatar_defaults', 'steira_newgravatar' );
  • To register widgets, use widgets_init hook per Widgets API. plus reminder to use unique slug as mentioned above

e.g. in functions.php, change

function theme_widgets_init() {
 	register_sidebar( array (
 	// code
 	) );
 }
 add_action( 'init', 'theme_widgets_init' );

to

function steira_widgets_init() {
 	register_sidebar( array (
 	// code
 	) );
 }
add_action( 'widgets_init', 'steira_widgets_init' );
  • Recommend: For registering a single custom menu, use register_nav_menu() instead of register_nav_menus()

Theme Review Summary

Not Approved

This was a cursory review only. This Theme failed a sufficient number of criteria to warrant discontinuing further review. Additional review may be required once the above issues are resolved.

The following information should be of assistance in getting your theme to meet all the criteria:

After you have properly addressed the above issues, please thoroughly review your theme and re-submit it using the uploader tool http://wordpress.org/extend/themes/upload/ which will generate a new Trac ticket.

Please feel free to make use of the contact details below if you have any questions, comments, or feedback:

  • Leave a comment on this ticket
  • Send an email to the Theme Review email list
  • Use the #wordpress-themes IRC channel on Freenode.
Note: See TracTickets for help on using tickets.