0

一直试图在 Wordpress 主题上插入“作者”by <?php the_author() ?>代码(8Bit 需要)。请求帮助。需要在帖子/页面标题之后和日期之前插入。

代码如下:

<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

1

这是标题和日期之间的示例:

<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">
    <?php the_author(); ?>
        <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>
于 2013-10-14T05:24:26.157 回答