Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion includes/class-job-dashboard-shortcode.php
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ public static function the_job_title( $job ) {
* @output string
*/
public static function the_date( $job ) {
echo '<div>' . esc_html( wp_date( apply_filters( 'job_manager_get_dashboard_date_format', 'M d, Y' ), get_post_datetime( $job )->getTimestamp() ) ) . '</div>';
echo '<div>' . esc_html( wp_date( apply_filters( 'job_manager_get_dashboard_date_format', get_option( 'date_format' ) ), get_post_datetime( $job )->getTimestamp() ) ) . '</div>';
}

/**
Expand Down
Loading