Viewing 1 replies (of 1 total)
  • Plugin Author Alex Mansfield

    (@alexmansfield)

    I just added a number of filters to version 0.9, so you can now safely display the date by adding the following code to the functions.php file of your theme:

    function latestbyauthor_date( $content ){
    	return $content . '<p>Published: ' . get_the_time('M j, Y') . '</p>';
    }
    add_filter( 'latestbyauthor_link_after', 'latestbyauthor_date' );
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Latest Posts by Author] Add post date after post title’ is closed to new replies.