wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



calendar_week_mod › WordPress Function

Da1.5.0
Deprecaton/a
calendar_week_mod ( $num )
Parametri:
  • (int) $num Number of day.
    Richiesto:
Ritorna:
  • (float) Days since the start of the week.
Definito a:
Codex:

Gets number of days since the start of the week.



Sorgenti

function calendar_week_mod( $num ) {
	$base = 7;
	return ( $num - $base * floor( $num / $base ) );
}