updated   : May 15, 2012
we now have 588 snippets
By : , on July 29, 2011 9:00 am

Embed Google books in your posts using shortcode

wordpress snippet

Adding the first snippet to the functions.php of your wordpress theme will let you use shortcode to embed google books. Just because it took me a while to find the ISBN number to embed a book. Look at the top right of the page when viewing a book for “About This Book”. Click on about this book and at the very bottom of the page you will find the ISBN number.

You will also notice that some books have multiple ISBN numbers eg: 0578022702, 9780578022703 both should work but grab the first one before the comma. If the book does not have an ISBN number you can get the id from the url. ( example screenshot )
snippet :  PHPcopy
add_shortcode('gbooks', 'sc_embed_google_books');
function sc_embed_google_books( $atts ){
	extract(shortcode_atts(array(
		"id" => '',
		"width"  => '600',
		"height" => '900',
	), $atts));
	return '<script type="text/javascript" src="http://books.google.com/books/previewlib.js"></script>
        <script type="text/javascript">
        GBS_insertEmbeddedViewer("'.$id.'", '.$width.','.$height.');
        </script>';
}
snippet :  SHORTCODEcopy
[gbooks id="0578022702" width="400" height="400"]
  • Pingback: WordPress shortcode available for Google Books | ButlerBlog

  • Gabriel Merovingi

    There is a ” missing for the width.

    Should be:
    [gbooks id="0578022702" width="400" height="400"]

    • http://wpsnipp.com Kevin Chard

      Thanks Gabriel, good call.

  • Andrew Goddard

    This looks a really useful addition for my site but I’m totally new to WP and have not played around with code before.  I have found functions.php in my Graphene 1.4.1 theme and I added the code by using the clipboard button and then pasting it in right at the end and saving the new file.  However, when I then tried to use it by going to new post I got some sort of error code (to do with header and calling something) which stuck with me.  Fortunately I’d pasted the original file into Notepad so I simply repasted it back over the edited file and saved and all now seems to be back to normal but of course I cannot use the shortcode.
    It may be this is a bit too complex for someone new but I wonder if I’m just pasting the code in the wrong place in the file or doing something else that is easily rectified.  Can you advise me at all?
    Thanks,
    Andrew

    • http://wpsnipp.com Kevin Chard

      If you post the code within the functions.php file on http://pastebin.com/ I can post a revised version with the shortcode added. It may be something within your theme that the code conflicts with.

      • Andrew Goddard

        Thanks.  Just pasted as Goddardfunctions.php  Never used pastebin before but think I’ve done it OK.  One other thought – if my theme is updated I presumably need to reinsert the code so should keep a copy of whatever works.  Thanks for your kind help.  Andrew

        • http://wpsnipp.com Kevin Chard

          Hi Andrew ill need the URL to where you pasted the code pastebin creates a random short url for each posting. 

      • Andrew Goddard

        Kevin,
        Thanks. Not sure my first attempt to tell you got through.  Looks like it is to be found at  http://pastebin.com/DQtJcd8g

        • http://wpsnipp.com Kevin Chard

          Hi Andrew,
          I added the google books shortcode so things should work now,
          http://pastebin.com/YVkcPLUh

          just add the shortcode to your post and things should work great,
          [gbooks id="0578022702" width="400" height="400"]

          Let me know,

  • Andrew Goddard

    Kevin,
    Many thanks.  Much appreciated.  The first fruit of this you can now see at
    http://www.theologyethics.com/2011/09/23/bonhoeffers-poetry-wannenwetsch-northcott-and-odonovan-articles/
    Hope I’ve given proper due acknowledgments to you and Chad
    As I get round to developing the site and blog I think I will use this shortcode quite a bit so many thanks.

    Andrew

    • http://wpsnipp.com Kevin Chard

      Hi Andrew no problem, glad that I could help. Site is looking great always!