我的网站有多个作者。我需要在作者页面中显示所有类型的作者帖子,如果访问者在访问其个人资料页面时可以看到作者的所有帖子。
此代码
<?php get_header(); ?>
<!-- Show custom post type posts from the author -->
<?php global $wp_query;
query_posts( array(
\'post_type\' => \'sikayet\' ,
\'author\' => get_queried_object_id(),
\'showposts\' => 10 )
); ?>
<?php if ( have_posts() ): ?>
<h3>SIKAYETKLER <?php echo $curauth->first_name; ?>:</h3>
<?php while ( have_posts() ) : the_post(); ?>
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>">
<?php the_title(); ?></a></p>
<?php endwhile; ?>
<?php else: ?>
<p><?php _e(\'User has no custom posts\'); ?></p>
<?php endif; ?>
<?php get_footer(); ?>