Ver Mensaje Individual
  #3 (permalink)  
Antiguo 31/12/2014, 12:24
Abelmelero
 
Fecha de Ingreso: marzo-2009
Mensajes: 168
Antigüedad: 15 años, 8 meses
Puntos: 1
Respuesta: Cómo hacer que la descripción de las categorías se muestre solo en una pág

Hola ArturoGallegos,

Gracias por tu respuesta. Mira te copio y pego el código de mi archive.php

Código PHP:
<?php

get_header
(); ?>

    <section id="primary" class="content-area">
        <div id="content" class="site-content" role="main">

        <?php if ( have_posts() ) : ?>
       
        <header class="page-header">

            <h1 class="page-title">
                    <?php
                        
if ( is_category() ) :
                            
single_cat_title();

                        elseif ( 
is_tag() ) :
                            
single_tag_title();

                        elseif ( 
is_author() ) :
                            
                            
the_post();
                            
printf__'Author: %s''modernwpthemes' ), '<span class="vcard"><a class="url fn n" href="' esc_urlget_author_posts_urlget_the_author_meta'ID' ) ) ) . '" title="' esc_attrget_the_author() ) . '" rel="me">' get_the_author() . '</a></span>' );
                            
                            
rewind_posts();

                        elseif ( 
is_day() ) :
                            
printf__'Day: %s''modernwpthemes' ), '<span>' get_the_date() . '</span>' );

                        elseif ( 
is_month() ) :
                            
printf__'Month: %s''modernwpthemes' ), '<span>' get_the_date'F Y' ) . '</span>' );

                        elseif ( 
is_year() ) :
                            
printf__'Year: %s''modernwpthemes' ), '<span>' get_the_date'Y' ) . '</span>' );

                        elseif ( 
is_tax'post_format''post-format-aside' ) ) :
                            
_e'Asides''modernwpthemes' );

                        elseif ( 
is_tax'post_format''post-format-image' ) ) :
                            
_e'Images''modernwpthemes');

                        elseif ( 
is_tax'post_format''post-format-video' ) ) :
                            
_e'Videos''modernwpthemes' );

                        elseif ( 
is_tax'post_format''post-format-quote' ) ) :
                            
_e'Quotes''modernwpthemes' );

                        elseif ( 
is_tax'post_format''post-format-link' ) ) :
                            
_e'Links''modernwpthemes' );

                        else :
                            
_e'Archives''modernwpthemes' );

                        endif;
                    
?>
                </h1>
                <?php
                    
// Show an optional term description.
                    
$term_description term_description();
                    if ( ! empty( 
$term_description ) ) :
                        
printf'<div class="taxonomy-description">%s</div>'$term_description );
                    endif;
                
?>
            <!-- .page-header --></header>

            <?php /* Start the Loop */ ?>
            <?php while ( have_posts() ) : the_post(); ?>

                <?php
                    get_template_part
'content'get_post_format() );
                
?>

            <?php endwhile; ?>

            <?php modernwpthemes_content_nav'nav-below' ); ?>

        <?php else : ?>

            <?php get_template_part'no-results''archive' ); ?>

        <?php endif; ?>

        </div>
    </section>

<?php get_sidebar(); ?>
<?php get_footer
(); ?>