Guest User

Untitled

a guest
Nov 15th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. if (is_day()) {
  2. printf('%s', get_query_var('day'));
  3. }elseif (is_month()) {
  4. $month = get_query_var( 'monthnum' );
  5. $month_object = DateTime::createFromFormat('!m',$month);
  6. echo $month_object->format('F');
  7. }elseif (is_year()) {
  8. printf('%s-%s-%s', get_query_var( 'year','monthnum','day' ));
  9. };
Add Comment
Please, Sign In to add comment