Muffin Builder shows up in the page editor for custom post type "Books"

Muffin Builder shows up in the page editor for custom post type "Books"?

Comments

  • Sorry but we don`t understand question. It shows and what? What are you asking for?
  • Sorry I expressed myself badly. My English is not very good! I would like to include in a Muffin Builder custom post type called "Books".
  • If you want to add our Muffin Builder into custom post type, then at first you must create post type based on one of our post types pages, like functions/meta-portfolio.php file. The most important is to use 2 functions below, the same way as in our post types files:
    mfn_builder_show();
    mfn_builder_save($post_id);
    and in template instead of the_content() function you need to use below to show muffin builder:
    <?php        
    // Content Builder & WordPress Editor Content       
    mfn_builder_print( get_the_ID() );   
    ?>
Sign In or Register to comment.