• Rozwiązano TheMisterAce

    (@themisterace)


    Witam, chciałbym usunąć ilość komentarzy pod wpisem na stronie głównej, a zamiast tego, zastąpić to miejsce autorem.
    Tak to wygląda:
    http://iv.pl/images/42359549497334385790.jpg
    Plik comments.php z mojego stylu:

    <?php if ( post_password_required() ) { ?>
            <p><?php _e( 'This post is password protected. Enter the password to view any comments.', 'themater' ); ?></p>
        <?php return; } ?>
    
        <?php if ( have_comments() ) { ?>
            <div id="comments">
    
                <h3 id="comments-title"><?php
            	printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'themater' ),
            	number_format_i18n( get_comments_number() ), '<em>' . get_the_title() . '</em>' );
            	?></h3>
    
                <ol class="commentlist">
        		  <?php wp_list_comments(); ?>
                </ol>
    
                <?php if ( get_comment_pages_count() > 1 ) { ?>
        			<div class="navigation clearfix">
        				<div class="alignleft"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments', 'themater' ) ); ?></div>
        				<div class="alignright"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>', 'themater' ) ); ?></div>
        			</div><!-- .navigation .clearfix -->
                <?php } ?>
    
            </div><!-- #comments -->
        <?php } ?>
    
        <?php comment_form(); ?>

Zobacz 2 odpowiedzi - od 1 do 2 (z 2 łącznie)
  • Musisz raczej szukać w pętli WP (The Loop) funkcji comments_number(…), bo to ona wyświetla ilość komentarzy.

    Zamiast niej użyj the_author().

    Twórca wątku TheMisterAce

    (@themisterace)

    W moim stylu o dziwo znalazłem dosyć niestandardowe miejsce odpowiedzialne za wyświetlenie komentarzy. Znalazłem go w post.php 🙂 Dzięki za wskazówki.

Zobacz 2 odpowiedzi - od 1 do 2 (z 2 łącznie)

Temat ‘Usunięcie ilości komentarzy na stronie głównej’ jest zamknięty na nowe odpowiedzi.