<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Hello,<div><br></div><div>it's me again, with yet another question. :/</div><div><br></div><div>I'd really appreciate a second opinion on this ticket (<a href="http://themes.trac.wordpress.org/ticket/6868">http://themes.trac.wordpress.org/ticket/6868</a>) if anyone gets a chance. Am I being to strict here?</div><div><br></div><div>Can Themes that display the excerpt in index pages omit the usage of wp_link_pages()?</div><div><br></div><div>And what about this best practice:</div><div>Use format strings instead of string concatenation — <tt>sprintf(__('Replace %1$s with %2$s'), $a, $b);</tt> is always better than <tt>__('Replace ').$a.__(' with ').$b;</tt></div><div><br></div><div>Would this be required, recommended or optional?</div><div>Example:</div><div><div><?php _e( '<font class="Apple-style-span" color="#4f792d">This is a gallery about</font>', 'esplanade' ); ?></div><div><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark"><?php the_title(); ?></a></div><div><?php _e( '<font class="Apple-style-span" color="#4f792d">and contains</font>', 'esplanade'); ?></div><div><?php echo count( get_posts( array( 'numberposts' => -1, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'post_parent' => get_the_ID() ) ) ); ?></div><div><?php _e( '<font class="Apple-style-span" color="#4f792d">images</font>', 'esplanade'); ?>.</div></div><div><br></div><div>Thanks for your patience,</div><div>Konstantin</div></body></html>