Problema Cod
Scris: 31-Oct-2009, 20:29:37
Am incercat sa fac astazi un mic plugin pentru un cms dar nu mi-a iesit, cred ca e o problema la cod, eu fiind incepator nu prea stiu inca cum sa aranjez pe acolo si as vrea daca puteti sa ma ajutati. Codul este acesta:
Iar problema este aceasta, parca nu se poate sincroniza cu tema:

Multumesc !
Cod: Selectaţi tot
<!--Begind Cele m-ai recente : Hardware-->
<div class="home-post-wrap-2">
<span class="home-post-titles">
<span style="float: left;">Cele m-ai recente : Hardware</span>
<div class="post-inside-small">
<ul>
<?php $recent = new WP_Query("cat=4&showposts=10"); while($recent->have_posts()) : $recent->the_post();?>
<li><a href="<?php the_permalink() ?>" rel="bookmark">
<?php the_title(); ?>
</a></li>
<?php endwhile; ?>
</ul>
</div>
<!--end Cele m-ai recente : Hardware-->
<!--Begind Cele m-ai recente : Jocuri-->
<div class="home-post-wrap-2">
<span class="home-post-titles">
<span style="float: left;">Cele m-ai recente : Jocuri</span>
<div class="post-inside-small">
<ul>
<?php $recent = new WP_Query("cat=1&showposts=10"); while($recent->have_posts()) : $recent->the_post();?>
<li><a href="<?php the_permalink() ?>" rel="bookmark">
<?php the_title(); ?>
</a></li>
<?php endwhile; ?>
</ul>
</div>
<!--end Cele m-ai recente : Jocuri-->

Multumesc !