WordPress

Jak wyświetlać tylko tytuły postów na stronach kategorii

  • 9 grudnia, 2014
  • 3 min read
Jak wyświetlać tylko tytuły postów na stronach kategorii


Cześć, potrzebuję wyświetlić tylko tytuły postów, proszę o pomoc, oto mój kod archive.php

<?php global $theme; get_header(); ?>

<div id="main">

    <?php $theme->hook('main_before'); ?>

    <div id="content">

         <?php $theme->hook('content_before'); ?>

          <h2 class="page-title"><?php

          /* If this is a daily archive */
          if (is_day()) {
               printf( __( 'Daily Archives: <span>%s</span>', 'themater' ), get_the_date() );

          /* If this is a monthly archive */
          } elseif (is_month()) {
              printf( __( 'Monthly Archives: <span>%s</span>', 'themater' ), get_the_date('F Y') );

          /* If this is a yearly archive */
          } elseif (is_year()) {
              printf( __( 'Yearly Archives: <span>%s</span>', 'themater' ), get_the_date('Y') );

          /* If this is a general archive */
          } else {
              _e( 'Blog Archives', 'themater' );
          }
          ?>
          </h2>

        <?php
        if (have_posts()) : while (have_posts()) : the_post();

            /**
            * The default post formatting from the post.php template file will be used.
            * If you want to customize the post formatting for your archive pages:
            *
            * - Create a new file: post-archive.php
            * - Copy/Paste the content of post.php to post-archive.php
            * - Edit and customize the post-archive.php file for your needs.
            *
            * Learn more about the get_template_part() function: 
            */

            get_template_part('post', 'archive');
        endwhile;

        else :
            get_template_part('post', 'noresults');
        endif;

        get_template_part('navigation');
    ?>

    <?php $theme->hook('content_after'); ?>

    </div><!-- #content -->

    <?php get_sidebars(); ?>

    <?php $theme->hook('main_after'); ?>

</div><!-- #main -->

<?php get_footer(); ?>

oto plik post.php

<?php global $theme; ?>

<div <?php post_class('post clearfix'); ?> id="post-<?php the_ID(); ?>">

    <div class="postmeta-primary">

        <span class="meta_date"><?php echo get_the_date(); ?></span>
        <span class="meta_categories"><?php the_category(', '); ?></span>

        <?php if(comments_open( get_the_ID() )) { ?>
            <span class="meta_comments"><?php comments_popup_link( __( 'No comments', 'themater' ), __( '1 Comment', 'themater' ), __( '% Comments', 'themater' ) ); ?></span>
        <?php } ?>
    </div>

    <h2 class="title">" title="<?php printf( esc_attr__( 'Permalink to %s', 'themater' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></h2>

    <div class="entry clearfix">

    <?php if(has_post_thumbnail()) { ?>">
        <?php the_post_thumbnail(
            array($theme->get_option('featured_image_width'), $theme->get_option('featured_image_height')),
            array("class" => $theme->get_option('featured_image_position') . " featured_image") ); ?>
    <?php } ?>

    <?php the_content(''); ?>

</div>

<?php if($theme->display('read_more')) { ?>
    <div class="readmore">
        #more-<?php the_ID(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'themater' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
        <?php $theme->option('read_more'); ?>
    </div>
<?php } ?>

</div><!-- Post ID <?php the_ID(); ?> -->


Źródło

Warto przeczytać!  Licz i pokazuj kliknięcia linków zewnętrznych na jednej stronie/poście