Standaard staat de datumnotatie van de berichten in WordPress op engels. In het bestand /wordpress/wp-content/theme/index.php staat de volgende code:

Code:
<?php the_time('F jS, Y') ?>

Dit levert de volgende notatie op: January 1st, 2006. Om het in nederlands formaat weer te geven dient dit gewijzigd te worden in:

Code:
<?php the_time('j F Y') ?>