Title: Inserting comments in articles
Last modified: August 18, 2016

---

# Inserting comments in articles

 *  [David Mottershead](https://wordpress.org/support/users/motty/)
 * (@motty)
 * [18 years, 10 months ago](https://wordpress.org/support/topic/inserting-comments-in-articles/)
 * I would like to submit my articles to a site called News Now. One of the requirements
   is that the actual article CONTENT be marked with
 * <!– Article Start –>
    CONTENT <!– Article End –>
 * See [here](http://www.newsnow.co.uk/publishers/site-submission-technical.html)
   for details.
 * I’m using k2 and thought I could do this by inserting this in the page.php source
   code:
 *     ```
       <div class="entry-content"><!-- Article Start -->
       						<?php the_content(); ?><!-- Article End -->
   
       						<?php link_pages('<p><strong>'.__('Pages:','k2_domain').'</strong> ', '</p>', 'number'); ?>
       					</div>
       ```
   
 * However when I view the source of my articles eg [here](http://www.visitnorthwest.com/news/morecambe-bay-sandcastle-festival/)
   I can’t see these comments inserted. Any ideas how I need to go about doing what
   they require?
 * Thanks
 * David

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [moshu](https://wordpress.org/support/users/moshu/)
 * (@moshu)
 * [18 years, 10 months ago](https://wordpress.org/support/topic/inserting-comments-in-articles/#post-601379)
 * Because page.php is for displaying [Pages](http://codex.wordpress.org/Pages) –
   what a surprize!
    Read, learn… [Template_Hierarchy](http://codex.wordpress.org/Template_Hierarchy)
 *  Thread Starter [David Mottershead](https://wordpress.org/support/users/motty/)
 * (@motty)
 * [18 years, 10 months ago](https://wordpress.org/support/topic/inserting-comments-in-articles/#post-601432)
 * Ok. Didn’t realise that. I’ve done some reading as suggested and put it in theloop.
   php file as follows:
 *     ```
       <div class="entry-content"><!-- Article Start -->
       				<?php if (is_archive() or is_search() or (function_exists('is_tag') and is_tag())) {
       					the_excerpt();
       				} else {
       					the_content(__('Continue reading','k2_domain') . " '" . the_title('', '', false) . "'");
       				} ?>
   
       				<?php link_pages('<p><strong>'.__('Pages:','k2_domain').'</strong> ', '</p>', 'number'); ?>
       			</div> <!-- Article End --><!-- .entry-content -->
       ```
   
 * Is this the best method? Seems to work.
 * Thanks

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Inserting comments in articles’ is closed to new replies.

 * In: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
 * 2 replies
 * 2 participants
 * Last reply from: [David Mottershead](https://wordpress.org/support/users/motty/)
 * Last activity: [18 years, 10 months ago](https://wordpress.org/support/topic/inserting-comments-in-articles/#post-601432)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
