如何在Wordpress中插入“作者”代码所需主题?

时间:2013-10-12 16:26:54

标签: php wordpress

尝试在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

1 个答案:

答案 0 :(得分: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>