Hola, a ver si alguien me podria ayudar.
En esta pagina de categorias, bajo el titulo aparence la fecha,en que categoria se a publicado y quien a publicado la entrada. Me gustaria saber si se puede quitar y como se puede quitar.
http://oscardhooge.com/category/portfolio/
He estado informandome y por lo que he creido entender debo modificar el archive.php de mi wordpress,pero para ser sincero soy bastante novato. Este es el codigo de mi archive.php. Gracias por adelantado.
<?php
/**
* Archive Template
*
* The archive template is the default template used for archives pages without a more specific template.
*
* @package Ascetica
* @subpackage Template
*/
get_header(); // Loads the header.php template. ?>
<?php do_atomic( 'before_content' ); // ascetica_before_content ?>
<div id="content">
<?php do_atomic( 'open_content' ); // ascetica_open_content ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content',( post_type_supports( get_post_type(), 'post-formats' ) ? get_post_format() : get_post_type() ) ); ?>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?>
<?php endif; ?>
<?php do_atomic( 'close_content' ); // ascetica_close_content ?>
<?php get_template_part( 'loop-nav' ); // Loads the loop-nav.php template. ?>
</div><!-- #content -->
<?php do_atomic( 'after_content' ); // ascetica_after_content ?>
<?php get_footer(); // Loads the footer.php template. ?>