Title: Adding Comments to Page
Last modified: August 20, 2016

---

# Adding Comments to Page

 *  Resolved [frogdogz](https://wordpress.org/support/users/frogdogz/)
 * (@frogdogz)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/adding-comments-to-page/)
 * Hello all, I’m hoping someone can help me with a theme issue I am having, since
   the template creator seems to no longer be offering any support.
 * I am using a WP theme which by default does not have comments appear on pages,
   even when ‘comments allowed’ is chosen as an option site wide. Digging into the
   templates, it seems comments are not included on the page layout.
 * Using 20-20, I can see the code that creates the comments on the bottom of a 
   page, but I can’t figure out what I need to do/edit to make comments automatically
   appear on a page, with the appropriate page url named.
 * If, for example, I embedded this code on the page template —
 * _[Code moderated as per the [Forum Rules](http://codex.wordpress.org/Forum_Welcome).
   Please use the [pastebin](http://wordpress.pastebin.com/)]_
 * Any comments added to any page on the site would post to the url named in this
   code.
 * So, what I’m looking for is the default code which adds comments to the page 
   on which the comment code appears.
 * I hope that explanation makes sense 🙂
 * The site in question is actually this one:
 * [http://frenchbulldogvillage.net](http://frenchbulldogvillage.net)

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/topic/adding-comments-to-page/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/adding-comments-to-page/page/2/?output_format=md)

 *  [tsany](https://wordpress.org/support/users/tsany/)
 * (@tsany)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/adding-comments-to-page/#post-2132026)
 * try use pastebin 🙂 ur code is not showing
 *  Thread Starter [frogdogz](https://wordpress.org/support/users/frogdogz/)
 * (@frogdogz)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/adding-comments-to-page/#post-2132029)
 * darn it, I thought I did… let me edit it.
 *  Thread Starter [frogdogz](https://wordpress.org/support/users/frogdogz/)
 * (@frogdogz)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/adding-comments-to-page/#post-2132030)
 * _[Code moderated as per the [Forum Rules](http://codex.wordpress.org/Forum_Welcome).
   This is your final warning…]_
 *  [tsany](https://wordpress.org/support/users/tsany/)
 * (@tsany)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/adding-comments-to-page/#post-2132035)
 * basically u want comments like
 * `http://frenchbulldogvillage.net/2011/06/emee-ive-been-adopted/`
 * appear in
 * `http://frenchbulldogvillage.net/adopt-a-frenchie/currently-available-frenchies/’
 * is it ?
 *  Thread Starter [frogdogz](https://wordpress.org/support/users/frogdogz/)
 * (@frogdogz)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/adding-comments-to-page/#post-2132038)
 * Yes, exactly – but comments specific to each page.
 * Sheesh, I hope I sussed out pasting the code this time… I was using the code 
   mark up function, but I guess that’s no longer allowed?
 *  [tsany](https://wordpress.org/support/users/tsany/)
 * (@tsany)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/adding-comments-to-page/#post-2132054)
 * so what do u want is something like..
 * i want comments in page 1 and 2 but not page 3 and 4 ?
 * if so.. find in the page.php
 * `< ?php comments_template( '', true ); ?>`
 * > or if it doesn’t exists.. it’s fine lol
 * change it to
 * `< ?php if ( is_page( array( ID#, ID#, ID# ) ) ) comments_template( '', true );?
   >`
 * ID# is your Page ID.
    `
 *  [dbphte1](https://wordpress.org/support/users/dbphte1/)
 * (@dbphte1)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/adding-comments-to-page/#post-2132064)
 * does the theme have a comments.php file? (if thats a daft questionn, please excuse:))
 *  [tsany](https://wordpress.org/support/users/tsany/)
 * (@tsany)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/adding-comments-to-page/#post-2132075)
 * how should i know if the theme has it ? you’re the one who have it.. lol
 *  [dbphte1](https://wordpress.org/support/users/dbphte1/)
 * (@dbphte1)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/adding-comments-to-page/#post-2132078)
 * im not the one with the problem:P
 *  [tsany](https://wordpress.org/support/users/tsany/)
 * (@tsany)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/adding-comments-to-page/#post-2132081)
 * ah yes.. it’s depends on the theme creator.. it may or may not.
 *  Thread Starter [frogdogz](https://wordpress.org/support/users/frogdogz/)
 * (@frogdogz)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/adding-comments-to-page/#post-2132086)
 * Aha! Yes, it does have a comments.php file
 * Let me go see if adding that to the page template does the trick.
 *  [esmi](https://wordpress.org/support/users/esmi/)
 * (@esmi)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/adding-comments-to-page/#post-2132090)
 * **[@dbphte1](https://wordpress.org/support/users/dbphte1/)**: Try looking for
   a comments.php file in Appearance ->Editor. Just ensure that your current theme
   is selected in the dropdown when you check the list of files.
 *  Thread Starter [frogdogz](https://wordpress.org/support/users/frogdogz/)
 * (@frogdogz)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/adding-comments-to-page/#post-2132092)
 * Nope, adding the comments code from comments.php made pages throw this error —
 * Parse error: syntax error, unexpected T_ENDWHILE in /home/fbv2011admin/frenchbulldogvillage.
   net/wp-content/themes/child_care_creative/layout_single_page.php on line 82
 *  [dbphte1](https://wordpress.org/support/users/dbphte1/)
 * (@dbphte1)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/adding-comments-to-page/#post-2132100)
 * should probably take it out then…
 * i might be way off being a total newbie – but if the theme creator disabled comments
   you just steal the comments.php from another theme and use that?
 *  [esmi](https://wordpress.org/support/users/esmi/)
 * (@esmi)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/adding-comments-to-page/#post-2132110)
 * No. You can’t just drop the comment code from one theme straight into another.

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/topic/adding-comments-to-page/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/adding-comments-to-page/page/2/?output_format=md)

The topic ‘Adding Comments to Page’ is closed to new replies.

## Tags

 * [Comments](https://wordpress.org/support/topic-tag/comments/)
 * [pages](https://wordpress.org/support/topic-tag/pages/)
 * [templates](https://wordpress.org/support/topic-tag/templates/)

 * 20 replies
 * 4 participants
 * Last reply from: [frogdogz](https://wordpress.org/support/users/frogdogz/)
 * Last activity: [14 years, 9 months ago](https://wordpress.org/support/topic/adding-comments-to-page/page/2/#post-2132149)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
