I'm trying to enter a small piece of information that is created from a plugin to an area of my wordpress page that is called my a custom post.
The plugin that I'm using is FlippingBook WordPress Gallery Plugin (I have purchased a license)
After I create a book I put this code into my post: [book id='2' /] This works fine if I just place it in my post, but all of the other content of the page is entered via custom posts so this needs to be as well so it flows inline with the structure of the document.
So I am calling to enter this information like this:
<div>
<?php echo get_post_meta($post->ID, 'enter_page_flip_id', true); ?>
</div>
But the [book id='2' /] no longer renders the book content, only text shows. Am I writing the custom post call incorrect?
The site: http://www.cicadabooks.co.uk/new/graphic-book-one/
Thanks much!