zhaoJian's Tech Notes

How to Call DMSGuestbook on Article Pages

Technology ~508 words · 2 min read - views
<?php if (have_posts()) : while (have_posts()) : the_post(); ?><?php the_content(''); ?>
<?php endwhile; endif; ?>

Method to call DMSGuestbook guestbook through WordPress pages

<div><?php if (have_posts()) : while (have_posts()) : the_post(); ?></div>
<div><?php the_content(''); ?></div>
<div><?php endwhile; endif; //Normal call for page content?></div>
<div><?php DMSGuestbook("$id"); //Use DMSGuestbook() function to call guestbook or comments on the page, id is the page id ?></div>
Share:

Comments