headsetoptions
Member
Posted 7 years ago #
I am a new user of WP and I uploaded WP 2.0 and I was trying to customize the Comments link that appears at the bottom of my posts. All I am looking for is to change the text from “Comments� to something like “Leave Feedback� or “Reply to post�. Your help will be appreciated.
hso
BTW, I am using the 'Falling Dreams' Theme design by Razvan Teodorescu .
You should be able to find this in the index.php file; search for "Comments".
headsetoptions
Member
Posted 7 years ago #
Here is my index.php script, where do I change it. Sorry- I am not a programmer. Your help is highly appreciated.
<? <?php
get_header();
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post">
<div class="data">
<?php the_time('F jS, Y') ?>
</div>
<h3 class="storytitle" id="post-<?php the_ID(); ?>">" rel="bookmark" title="<?php the_title(); ?>">
<?php the_title(); ?>
</h3>
<div class="autor">Posted by
<?php the_author() ?>
in
<?php the_category(', ') ?>
<?php edit_post_link('Edit','|',''); ?>
</div>
<div class="storycontent">
<?php the_content(__('(more...)')); ?>
</div>
<div class="feedback">
<?php wp_link_pages(); ?>
<?php comments_popup_link(__('0 Comments'), __('1 Comments'), __('% Comments')); ?>
</div>
<!--
<?php trackback_rdf(); ?>
-->
</div>
<?php comments_template(); // Get wp-comments.php template ?>
<?php endwhile; else: ?>
<?php _e('Sorry, no posts matched your criteria.'); ?>
<?php endif; ?>
<?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?>
<?php get_footer(); ?>