Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/03/2012, 04:35
ramondevesa
 
Fecha de Ingreso: noviembre-2010
Mensajes: 234
Antigüedad: 14 años
Puntos: 2
Respuesta: eliminar autor de los posts

Esto es lo que contiene mi archivo single.php

Código PHP:
Ver original
  1. <?php
  2. /**
  3.  * The Template for displaying all single posts.
  4.  *
  5.  * @package WordPress
  6.  * @subpackage Twenty_Ten
  7.  * @since Twenty Ten 1.0
  8.  */
  9.  
  10. get_header(); ?>
  11.  
  12.         <div id="container">
  13.             <div id="content" role="main">
  14.  
  15.             <?php
  16.             /* Run the loop to output the post.
  17.              * If you want to overload this in a child theme then include a file
  18.              * called loop-single.php and that will be used instead.
  19.              */
  20.             get_template_part( 'loop', 'single' );
  21.             ?>
  22.  
  23.             </div><!-- #content -->
  24.         </div><!-- #container -->
  25.  
  26. <?php get_sidebar(); ?>
  27. <?php get_footer(); ?>