DMSGuestbook을 글 페이지에서 호출하는 방법
<?php if (have_posts()) : while (have_posts()) : the_post(); ?><?php the_content(''); ?><?php endwhile; endif; ?>wordpress 페이지를 통해 DMSGuestbook 방명록을 호출하는 방법
<div><?php if (have_posts()) : while (have_posts()) : the_post(); ?></div><div><?php the_content(''); ?></div><div><?php endwhile; endif; //페이지 내용을 정상적으로 호출?></div><div><?php DMSGuestbook("$id"); //DMSGuestbook() 함수를 통해 페이지에서 방명록 또는 댓글을 호출, id는 페이지의 id ?></div>