am inceput sa fac un site de muzica....totul e in wordpress....lui @hexstring ii merge codu pe site ...mie NU ...( in proportie de 80% nu are legatura cu nici un plugin )
codul este urmatorul si vine pe index.php ...trebuia ca acesta sa apara cu ultimele posturi care separat vin fiecare cu cate o melodie,categoria in care se afla si numarul de afisari :
<?php get_header(); ?>
<table width="510" cellpadding="1" cellspacing="1">
<tr>
<td width="358" background="wp-content/themes/blue.jpg" align ="left"><font color="#ffffff" size="2">Artist - Melodie</font></td>
<td width="69" background="wp-content/themes/blue.jpg" align="center"><font color="#ffffff" size="2">Categorie</font></td>
<td width="51" background="wp-content/themes/blue.jpg" align="center"><font color="#ffffff" size="2">Accesari</font></td>
</tr>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<tr>
<td align="left"><a href="<?php the_permalink() ?>" rel="bookmark" title="Downloadeaza melodia <?php the_title(); ?>"><?php the_title(); ?></a></td>
<td align="center"><?php the_category(', ') ?></td>
<td align="center"><?php if(function_exists('the_views')) { the_views(); } ?> </td>
</tr>
<?php endwhile; ?>