Trackback link not showing on artisteer theme


Author Message
David

Posted: 6/6/2009
Quote message 

i have done the mod for trackback but it does not show on artisteer theme if i switch to default theme link shows for trackback.

ping working ok.

can any one help??

blog:http://djwalker.co.cc

Thanks in advance

david
 
david

Posted: 6/6/2009
Quote message 

Quote David:

i have done the mod for trackback but it does not show on artisteer theme if i switch to default theme link shows for trackback.

ping working ok.

can any one help??

blog:http://djwalker.co.cc

Thanks in advance

david



Found solution on internet page;

If your Wordpress blog doesn’t show Track URL’s for each post, here’s how to add them in yourself.

1. Log in to your Wordpress Admin Panel
2. Click on Presentation => Theme Editor => Single Post
3. Scroll down to where the comments area is and add this code:

 <a href=”<?php trackback_url(); ?>”>Trackback URL</a>


4. Click “Save”
5. If you want Trackback URL’s to be listed on every post in your main page as well, click on “Main Index Template” in the Theme Editor, and add the same code there as well.

I have adapted this & placed the code as follows;

Go to single.php (in your Artisteer theme folder)

Find the following code on line 100 - 106


<div class="navigation"> 	<div class="alignleft"><?php echo $prev_link; ?></div> 	<div class="alignright"><?php echo $next_link; ?></div> </div>  </div> <div class="cleared">


Add after this code ;

<br /> <br /> <font size="4"><div align="center"><b>You can leave a response below, or  <a href="<?php trackback_url(); ?>">trackback</a> from your own site.</b></font> </div>


Now a trackback link will appear on each post.

To add the link to the main page go to;

Index.php (in your Artisteer theme folder)

Find the following code; (line 20 - 23)

<?php _e('Author', 'kubrick'); ?>: <a href="#" title="<?php _e('Author', 'kubrick'); ?>"><?php the_author() ?></a> <?php $icons[] = ob_get_clean(); ?><?php endif; ?><?php if (current_user_can('edit_post', $post->ID)): ?><?php ob_start(); ?><img src="<?php bloginfo('template_url'); ?>/images/PostEditIcon.png" width="14" height="14" alt="PostEditIcon" />  <?php edit_post_link(__('Edit', 'kubrick'), ''); ?>


Add after this code;

| <a href="<?php trackback_url();?>">Trackback URL</a>


If for some reason it does not appear update your permalinks

David