It sounds like you are having trouble finding the right place in the theme templates to insert the code. Unfortunately it is impossible for me to give specific instructions for this because every theme is different.
The plugin is not really intended for use by absolute beginners; it is more meant for theme developers and people who have at least a moderate level of experience in working with WordPress. The best advice I can give you is to ask on the support forum for the particular theme you are using; perhaps someone there will be able to help.
I think you are right – need to walk before I run.
I did, however, figure out that I have a file called “content-page.php.” I’m thinking it probably should go in that one.
It looks like this:
<?php
/**
* The template used for displaying page content in page.php
*
* @package Catch Everest
* @since Catch Everest 1.0
*/
?>
<article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<header class=”entry-header”>
<h1 class=”entry-title”><?php the_title(); ?></h1>
</header><!– .entry-header –>
<div class=”entry-content”>
<?php the_content(); ?>
<?php wp_link_pages( array( ‘before’ => ‘<div class=”page-links”>’ . __( ‘Pages:’, ‘catcheverest’ ), ‘after’ => ‘</div>’ ) ); ?>
<?php edit_post_link( __( ‘Edit’, ‘catcheverest’ ), ‘<span class=”edit-link”>’, ‘</span>’ ); ?>
</div><!– .entry-content –>
</article><!– #post-<?php the_ID(); ?> –>
Thanks for the help – and the free plug in!
Yes, that’s probably the right file. Try putting it either directly above or directly below this line:
</div><!-- .entry-content -->
thanks again for the help. I’m just doing something wrong, because I can’t get it to work (tried both above and below that line).
I’ll follow up in the theme forums as per your original sugguestion.
Thanks!