記事ページで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>