Hu,
ich habe auf meinem Blog WP -PostRating installiert.
Ich habe den Code in die single.php eingebaut,
es werden auch die Sternen in den Posts angezeigt,
ich kann jedoch nicht Voten und unter den Sternen
steht "Loading...." und es geschieht nichts.
single.php
PHP
<?php get_header(); ?>
<div class="articleimg">
<div class="article">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="headline">
<h2 align="center"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div align="center"><span class="comments">
<?php comments_popup_link('0', '1', '%'); ?>
</span>
</div>
</div>
<div class="thecontent">
<?php the_content('<span class="goon">Read the rest of this entry......</span>'); ?>
</div>
<div class="postmetadata">
<p align="center">Date: <?php the_time('l, F jS, Y') ?> | Filed under <?php the_category(', ') ?> <?php edit_post_link('Edit', ' | ', ''); ?></p>
</div>
</div>
<center>
<?php if(function_exists('the_ratings')) { the_ratings(); } ?>
</center>
<?php comments_template(); ?>
<?php endwhile; else: ?>
<p>Nothing found</p>
<?php endif; ?>
<?php get_footer(); ?>
Alles anzeigen