I use Ben Gunnink’s Now Reading Reloaded plugin for WordPress over at Writing Down the Jones.
I love the plugin, but there was a small bug that was killing my layout. There appears to be a JS freakout at heliologue.com, so I’m hoping you’re a diligent checker of incoming links, Ben.
The book_review function (template-functions.php:582) is missing the code that enables the $echo parameter. It should look like this.
function book_review( $echo = true ) {
global $book;
if ( $book->review )
$review = apply_filters('book_review', $book->review);
else
$review = apply_filters('book_review', '
' . __('This book has not yet been reviewed.', NRTD) . '
');
if ( $echo )
echo $review;
return $review;
}
That’s all. And I hope to get the multiple author functions ready in the next week or so, now that my semester’s over.
