Viewing 2 replies - 1 through 2 (of 2 total)
  • Replace this

    $item .= "<abbr title='" . get_the_time(__('Y/m/d g:i:s A'), $pending) . "'>"
    . get_the_time( get_option( 'date_format' ), $pending ) . '</abbr></h4>';

    with this

    $item .= "<abbr title='" . get_the_time(__('Y/m/d g:i:s A'), $pending) . "'>"
    . get_the_author_meta('display_name', $pending->post_author) . ', '
    . get_the_time( get_option( 'date_format' ), $pending ) . '</abbr></h4>';

    at line 99 in version 2.0.0

    For other valid meta-fields besides display_name see here.

    Thread Starter SheerHeartAttack

    (@sheerheartattack)

    Perfect, thank you so much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Dashboard: Pending Review] Author Names?’ is closed to new replies.