| Server IP : 104.21.20.151 / Your IP : 216.73.216.217 Web Server : Apache System : Linux sr32.hostlife.net 6.12.0-124.52.3.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Sat May 2 09:06:54 EDT 2026 x86_64 User : golfb689 ( 1071) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /proc/thread-self/cwd/wp-content/languages/ |
Upload File : |
<?php
/* filters */
add_filter( 'date_i18n', 'date_declension' );
/* functions */
function date_declension( $date )
{
$month_names = array( '/Styczeń/', '/Luty/', '/Marzec/', '/Kwiecień/', '/Maj/', '/Czerwiec/', '/Lipiec/', '/Sierpień/', '/Wrzesień/', '/Październik/', '/Listopad/', '/Grudzień/' );
$month_names_genitive = array( 'stycznia', 'lutego', 'marca', 'kwietnia', 'maja', 'czerwca', 'lipca', 'sierpnia', 'września', 'października', 'listopada', 'grudnia' );
/* "1 Styczeń..." -> "1 stycznia..." */
$pattern = '/^\d{1,2}\ \w+/';
if ( preg_match( $pattern, $date ) ) return preg_replace( $month_names, $month_names_genitive, $date );
return $date;
}
?>