Viewing 5 replies - 1 through 5 (of 5 total)
  • David: there is no built-in provision for automatically adding a signature to your posts. There may be a plugin to do this, but I don’t know specifically of any such plugin.

    Technorati Tags requires the use of a plugin. Several exist. Try the plugin list on the WordPress Codex.

    For the signature: if it is going to be in every post ( as the OP stated) wouldn’t it work by inserting it hardcoded into the template in the Loop?

    Yes, adding the signature in the template after the_content() would work.

    I did that, I wanted an image to show for every post that I put up. Since I’m the only one posting in that blog, it would only be for me.

    <div id="content">
    <?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>

    <?php the_date('','<h2>','</h2>'); ?>

    <div class="post">
    <h3 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h3>
    <div class="meta"><?php _e("Filed under:"); ?> <?php the_category() ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(); ?></div>

    <div class="storycontent">
    <?php the_content(); ?>
    </div>

    <img src="https://davensjournal.com/images/davenbl21.gif&quot; />

    As you see, the image comes after the post about the blog. At that point, it’s whatever you want to be there.

    For the Technorati tags, I have been using CaTT plugin. In combination with Modified Cat2Tag plugin, my categories get created when I write my post and then the TT are automatically created from that. It’s a swell system, but it seems to time out on me; it just keeps “processing.” Eventually, I go to the Manage area and the post is there.

    Jamie
    $6.95 hosting from Bluehost!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Signature line’ is closed to new replies.