0

我的wordpress博客有问题(http://muraliprashanth.me)一切似乎都工作正常,但问题是在每篇文章之后我都在附加作者信息,如下图所示

穆拉利·普拉尚斯

但是当我点击

查看 Murali Prashanth 的所有帖子超链接

它正在将我重定向到这个 URL http://muraliprashanth.me/author/Murali%20Prashanth/ 我不知道在哪里创建作者个人资料页面或者我的 wordpress 主题是否支持作者个人资料页面 请建议我我正在努力从过去 3 个月解决此问题,非常感谢帮助。

提前致谢。

4

2 回答 2

1

这两个链接包含有关作者个人资料链接的详细信息以及模板信息。看看你是否能够修复它。

http://codex.wordpress.org/Author_Templates http://codex.wordpress.org/Function_Reference/the_author_url

于 2012-12-22T09:36:27.943 回答
1

试试看。我已经给出了我的 author.php 文件以供使用。

<?php
/**
 * The template for displaying Author Archive pages.
 *
 * @package WordPress
 */

get_header(); ?>

<?php
    if ( have_posts() )
        the_post();
?>

                <h1><?php printf( __( 'Author Archives: %s' ), "<span class='vcard'><a class='url fn n' href='" . get_author_posts_url( get_the_author_meta( 'ID' ) ) . "' title='" . esc_attr( get_the_author() ) . "' rel='me'>" . get_the_author() . "</a></span>" ); ?></h1>

<?php
// If a user has filled out their description, show a bio on their entries.
if ( get_the_author_meta( 'description' ) ) : ?>
                <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'avatar_size', 60 ) ); ?>
                <h2><?php printf( __( 'About %s', 'theme' ), get_the_author() ); ?></h2>
                <?php the_author_meta( 'description' ); ?>
<?php endif; ?>

<?php
    rewind_posts();

    get_template_part( 'loop', 'author' );
?>

<?php get_sidebar(); ?>
<?php get_footer(); ?>
于 2012-12-22T11:15:10.793 回答