Northern-Web-Coders 2.5 Theme

Gestern habe ich hier das neue Northern-Web-Coders Theme – 2.4 zum Download bereitgestellt. Dann dachte ich mir, dass ich das Theme doch auch mal wieder bei wordpress.org einreichen könnte. Vorbereitet habe ich das Northern-Web-Coders Theme – 2.4 mit den von wordpress.org bereitgestellten Test-Daten.

Nach dem Upload habe ich ein paar Fehlermeldungen erhalten. Die meisten waren You have not included a text domain!

Um diesen Fehler zu vermeiden, habe ich sämtliche <?php _e(' '); ?> durch <?php printf(_e("")); ?> ersetzt.

Die letzten Meldungen sind:
EMPFOHLEN: Kein Hinweis auf add_editor_style() wurde im Theme gefunden.
EMPFOHLEN: Kein Hinweis auf add_custom_image_header wurde im Theme gefunden.
EMPFOHLEN: Kein Hinweis auf add_custom_background() wurde im Theme gefunden.

Damit kann ich leben. Mal sehen, was wordpress.org dazu sagt.

Das Plugin Theme Check ist für das Testen des Themes sehr nützlich.

Dann habe ich noch die Content in 2 Spalten Lösung geändert. Nun muss im Template nicht mehr die Anzahl der Artikel angegeben werden. Diese richtet sich nun nach der Anzahl, die im Backend festgelegt ist. Gefunden habe ich den Code dazu hier

Download


Und so sieht der Code in meiner index.php aus:


<?php get_header(); ?>
<?php $i =(''); ?>
<section class="column-left">
<?php if (have_posts()) : while(have_posts()) : $i++; if(($i % 2) == 0) : $wp_query->next_post(); else : the_post(); ?>
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<?php the_date('','<h2 class="date">','</h2>'); ?>
<h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<section class="meta">
<?php printf(_e("Categories:")); ?> <?php the_category(', ') ?>
<br />
<?php the_tags(__('Tags: '), ' , ' , ''); ?> 
<?php edit_post_link(__('Edit This')); ?>
</section>
<?php the_content(__('(more...)')); ?>
<section class="comment">
<?php wp_link_pages(); ?>
<?php comments_popup_link(__('No Comments'), __('1 Comment'), __('% Comments'), '', __('Comments are closed.') ); ?>
</section>
</article>
<?php endif; endwhile; else: ?>
<?php endif; ?>
</section>
<?php $i = 0; rewind_posts(); ?>
<section class="column-right">
<?php if (have_posts()) : while(have_posts()) : $i++; if(($i % 2) !== 0) : $wp_query->next_post(); else : the_post(); ?>
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<?php the_date('','<h2 class="date">','</h2>'); ?>
<h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<section class="meta">
<?php printf(_e("Categories:")); ?> <?php the_category(', ') ?>
<br />
<?php the_tags(__('Tags: '), ' , ' , ''); ?> 
<?php edit_post_link(__('Edit This')); ?>
</section>
<?php the_content(__('(more...)')); ?>
<section class="comment">
<?php wp_link_pages(); ?>
<?php comments_popup_link(__('No Comments'), __('1 Comment'), __('% Comments'), '', __('Comments are closed.') ); ?>
</section>
</article>
<?php endif; endwhile; else: ?>
<?php endif; ?>
</section>
<?php comments_template(); ?>
<section id="pagenav">
<?php posts_nav_link() ?>
</section>
<?php get_footer(); ?>