0

by <?php the_author() ?>Wordpress テーマ (8Bit で必要) に"By Author" コードを挿入しようとしています。助けを求める。投稿/ページのタイトルの後、日付の前に挿入する必要があります。

コードは次のとおりです。

<header>
    <?php if ( 0 < strlen( get_the_title() ) ) { ?>
        <h1 class="entry-title">
            <a href="<?php the_permalink(); ?>">
                <?php the_title(); ?>
            </a>
        </h1><!-- /.entry-title --> 
    <?php } // end if ?>

    <div class="post-meta">
        <span class="post-date">
            <?php if ( 0 < strlen( get_the_title() ) ) { ?>
                <?php the_time( get_option( 'date_format' ) ); ?>
            <?php } else { ?>
                <a href="<?php the_permalink(); ?>">
                    <?php the_time( get_option( 'date_format' ));?>
                </a>
            <?php } // end if/else ?>
        </span><!-- /.post-date -->
        <?php _e( ' | ', 'required' ); ?>
        <span class="comment-link">
            <?php 
                comments_popup_link( 'Comment', '1 comment', '% comments',
                    'comments-link', '');
            ?>
        </span><!-- /.comment-link -->
        <?php edit_post_link( '- edit ', '<span>', '</span>'); ?>
    </div><!-- /.post-meta -->
</header>

ありがとう :)

これはループコードです:

<?php
        if ( have_posts() ) {

            while ( have_posts() ) {


                                   the_post();
                get_template_part( 'content', get_post_format() );

            } // end while
4

1 に答える 1