Viewing 8 replies - 1 through 8 (of 8 total)
  • you could just edit into your index.php and/or single.php……

    like right at the bottom of the loop….
    after this:
    <?php the_content('Read the rest of this entry &raquo;'); ?>
    something like
    copyright by <?php the_author(); ?> on <?php the_time('Y'); >

    dunno if that’s a route you wanna go?

    Thread Starter jeffutogo

    (@jeffutogo)

    Hi! Thank you very much for the help!

    Here is the statement I wrote:
    “Chinabuzz.net claims the copyright of all material produced originally by us. This material includes, but is not limited to, the text, design, layout, look, and graphics. All rights reserved. Reproduction is prohibited other than in accordance with our copyright notice that reproduction is for non-commercial purposes only, and both the source and author are acknowledged with a notifying email sending to us too.

    For more information on Terms and Conditions, please check out here.”

    I would like to add this to all the posts (old and new). Is it possible? Thank you very much!

    yeah….same way as I described above…. adding it to index.php and single.php will cover your posts you may need to also add to page.php if necessary.

    just add it under the loop….. I would wrap it in a class so you can use css to style it differently from your posts…. if desired

    <div class='copyright'>
    your text
    </div>

    then in your style.css you can add

    .copyright {
       css styling here
          }

    Thread Starter jeffutogo

    (@jeffutogo)

    Hi! Thank you very much! But I didn’t find the tag:
    <?php the_content('Read the rest of this entry »'); ?>
    both in index.php and single.php. ??

    do you see anything mentioning the_content or the_excerpt?

    Thread Starter jeffutogo

    (@jeffutogo)

    Hello! I am sorry I am just back.

    I found the_content in single.php and page.php, like:
    <?php the_content('<span class="readmore"><strong>?Read More ?</strong></span>'); ?>

    But I didn’t find in index.php.

    Could you kindly help instruct how should do the next?

    Thank you very much!

    Thread Starter jeffutogo

    (@jeffutogo)

    Hello RVoodoo!

    I just added what you suggested below
    <?php the_content('<span class="readmore"> Read More »</span>'); ?>
    in single.php only. And it is working very well. (It seems there is no need to add it to index.php).

    Could you kindly tell me what the purpose is to add
    .copyright {
    css styling here
    }

    in style.css

    Thank you again!

    the purpose of adding .copyright to your css (if you set things up like this:)

    <div class='copyright'>
    your text
    </div>

    is that since we wrapped your copyright statement in ‘<div class=”copyright”>’ you could style your copyright statement with different color, or font, or whatever if you wanted, to make it look different from the rest of your text.

    It’s not necessary, just gives you styling options

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Copyright announcement to each post’ is closed to new replies.