Ver Mensaje Individual
  #4 (permalink)  
Antiguo 23/12/2013, 23:18
maxilocuras
 
Fecha de Ingreso: diciembre-2013
Mensajes: 11
Antigüedad: 10 años, 4 meses
Puntos: 0
Respuesta: Como quitar las categorias archivos etc del las entradas de Wordpress

hola Quinqui gracias por ayudarme. te dejo el single.php de mi plantilla. ya eh probado quitando la linea

Categor&iacute;as: <?php the_category(', ') ?>
<?php edit_post_link('(+)', '', ''); ?>

y solo quita la descripcion debajo del titulo la cual le informa al visitante en que categoria
se encuentra.
Yo la que necesito quitar es la lista categorias la cual aparese en forma de menu.

<?php get_header(); ?>

<?php include(TEMPLATEPATH."/ad728.php");?>

<?php include(TEMPLATEPATH."/left.php");?>

<div id="content" class="narrowcolumn" role="main">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>



<div class="post box" id="post-<?php the_ID(); ?>">
<div class="box-b">
<div class="box-t">


<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
<!-- <div class="meta"> -->
<div class="sag">
</div>


<div class="sag">
<?php comments_popup_link(''); ?>
</div>


<div class="sol">
Categor&iacute;as: <?php the_category(', ') ?>
<?php edit_post_link('(+)', '', ''); ?>
</div>


</div>
</div>

<div class="box-b">
<div class="entry">

<?php include(TEMPLATEPATH."/ad336.php");?>

<?php the_content('<p class="serif">Leer todo &raquo;</p>'); ?>


</div>



<?php wp_link_pages(array('before' => '<p><strong>Paginas:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>

<div class="meta">
<?php the_tags('Tags: ', ', ', ''); ?>
</div>


</div>
</div>
</div>

<?php comments_template(); ?>

<?php endwhile; else: ?>



<?php endif; ?>

</div>


<?php include(TEMPLATEPATH."/ad120_1.php");?>

<?php get_footer(); ?>