---
title: "如何实现DMSGuestbook在文章页面中调用"
date: 2011-08-08T11:23:56.000Z
tags: ["DMSGuestbook"]
categories: ["技术"]
canonical: https://www.zhaojian.net/dmsguestbook-calls-on-the-article-page/
author: 赵健
---

```
<?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>
```