WPウィジェットのソースカスタマイズ

どこにそのソースがあるか分からず探すのに一苦労。メモ書きとして残しておきます。
Wordpressのウィジェットのサイドバーに、日付を出したいのだけれどもどこをいじってよいやら分からず四苦八苦。

/wp-includes内の「default-widgets.php」の、570行目あたり。

 

<ul>
<?php  while ($r->have_posts()) : $r->the_post(); ?>
<li><a href=”<?php the_permalink() ?>” title=”<?php echo esc_attr(get_the_title() ? get_the_title() : get_the_ID()); ?>”><?php if ( get_the_title() ) the_title(); else the_ID(); ?></a></li>
<?php endwhile; ?>
</ul>

これを

        <?php  while ($r->have_posts()) : $r->the_post(); ?>
<li><?php echo get_the_date(); ?><br><a href=”<?php the_permalink() ?>” title=”<?php echo esc_attr(get_the_title() ? get_the_title() : get_the_ID()); ?>”><?php if ( get_the_title() ) the_title(); else the_ID(); ?></a></li>
<?php endwhile; ?>
</ul>

赤字を追加。

結果

 

こうなりました。できた!!

ちなみにWordPress3.4.2です。

カテゴリ:Wordpress
タグ: | |