Hallo,
ich bin vor Kurzem auf das in der Überschrift genannte Plugin gestoßen, welches man hier finden kann: http://kashou.net/blog/inline-ajax-comments/
Jedoch schaffe ich nicht, das in mein momentanes Design zu integrieren. Vielleicht kann mir dabei jemand von Euch helfen.
Laut obigem Link muß ich in die index.php meiner Template zwei Zeilen einfügen, und zwar
Zitat
und
Zitat
Ich habe leider keinen blassen Schimmer, wo genau das in meine index.php reinmuß :mad:. Die sieht folgendermaßen aus:
PHP
<?php get_header(); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="heading">{<?php the_time('F d, Y') ?>} <span id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></span></div>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>
<div class="footer"><a href="mailto:<?php the_author_email(); ?>"><?php the_author() ?></a> @ <?php the_time('g:i a'); ?> [filed under <?php the_category(', ') ?><?php edit_post_link('Edit?',' (',')'); ?>]
<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> </div>
<br />
<br />
<?php comments_template(); ?>
<!--
<?php trackback_rdf(); ?>
-->
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php posts_nav_link('','','« Previous Entries') ?></div>
<div class="alignright"><?php posts_nav_link('','Next Entries »','') ?></div>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center"><?php _e("Sorry, but you are looking for something that isn't here."); ?></p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen
Meine Vermutung war, die zwei Zeilen anstelle von
und
einzufügen; das hat aber nicht funktioniert.
Tja, keine Ahnung von PHP eben ;).
Kann mir jemand weiterhelfen?