justintadlock / breadcrumb-trail

Official home of the Breadcrumb Trail plugin for WordPress.
GNU General Public License v2.0
136 stars 61 forks source link

Warning when viewing paged day archive. #36

Open sachyya opened 6 years ago

sachyya commented 6 years ago

Following are the issues: Warning: Missing argument 2 for get_day_link(), called in inc/breadcrumbs.php on line 798

Warning: Missing argument 3 for get_day_link(), called in inc/breadcrumbs.php on line 798

Closing brace is misplaced here.

Following code should be

$this->items[] = sprintf( '<a href="%s">%s</a>', esc_url( get_day_link( get_the_time( 'Y' ) ), get_the_time( 'm' ), get_the_time( 'd' ) ), $day );

should be

$this->items[] = sprintf( '<a href="%s">%s</a>', esc_url( get_day_link( get_the_time( 'Y' ), get_the_time( 'm' ), get_the_time( 'd' ) ) ), $day );