Ver Mensaje Individual
  #1 (permalink)  
Antiguo 09/02/2007, 07:20
Avatar de xiscomax
xiscomax
 
Fecha de Ingreso: febrero-2006
Mensajes: 379
Antigüedad: 18 años, 3 meses
Puntos: 5
Pregunta Ayuda con plugin WP-PostRatings en mi codigo php ? me crea salto de linea...:_(

Salu2 gente, antes d nada no tengo casi nidea de PHP por eso acudo a vosotros los mas entendidos xD pero desde que uso wordpress estoy aprendiendo mucho.

Eh instalado el Plugin WP-PostRatings en mi wordpress, pero tengo un pequeño problemita aber si me explico.

Las estrellitas del plugin an de aparecer justo debajo del post, al lado del apartado Numero de comentarios etc,

Ejemplo las "X" son las estrellitas del plugin.

(5) Comentarios - Cat. General - X X X X X

La cuestion es que si añado el codigo del plugin a mi php las estrellas no me aparecen al lado sino que hacen un salto de linea y me aparecen justo debajo de Comentarios

Ejemplo

(5) Comentarios - Cat. General -
X X X X X

:_(

Este es el codigo del Plugin que eh de añadir a mi php

Código PHP:
<?php if(function_exists('the_ratings')) { the_ratings(); } ?>
Este es mi codigo PHP

Código PHP:
<?php get_header(); ?>
<div class="content">
        <div class="left">

            <?php if (have_posts()) : ?>

            <?php while (have_posts()) : the_post(); ?>

            <div class="item" id="post-<?php the_ID(); ?>">

            <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1>
 
            <div class="entry">

            <?php the_content('Read the rest of this entry &raquo;'); ?>

            </div>

            <p class="info"><?php comments_popup_link('(0) Comentarios &raquo;''(1) Comentario &raquo;''(%) Comentarios &raquo;'); ?> <strong>-</strong> <?php the_category(', '?> <?php if(function_exists('the_ratings')) { the_ratings(); } ?></p>

            </div>

            <?php comments_template(); ?>

            <?php endwhile; ?>

            <p align="center"><?php next_posts_link('&laquo; Pagina Anterior'?> <?php previous_posts_link('Siguiente Pagina &raquo;'?></p>

            <?php else : ?>

            <h2 align="center">Not Found</h2>

            <p align="center">Sorry, but you are looking for something that isn't here.</p>

            <?php endif; ?>

        </div>
    <?php get_sidebar(); ?>

        

        <br class="clearer"/><span></span>

    </div>
<?php get_footer(); ?>
    

</div>

</body>

</html>
Eh probado modificando el codigo del Plugin dejandolo asi.

Código PHP:
<?php the_ratings('the_ratings'); ?>
Y consigo que keden donde quiero, pero las estrellas no rulan :(

Necesito ayuda.
Gracias de ante mano. y Feliz Fin de Semana.