I am willing to pay for this customisation. Please let me know.
Display Author Specific Categories on Author's Page Classipress
On a specific author's page which is displayed using author.php the latest ads which that author has created are displayed using the following lines of code:
<?php query_posts( array('posts_per_page' => 10, 'post_type' => APP_POST_TYPE, 'post_status' => 'publish', 'author' => $curauth->ID) ); ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post() ?>
I need to display the latest author specific ad categories on the authors page as well.
I presume I just need to duplicate and edit the above code but I am clueless which parts to change.
Could anyone please help me out here.
Thank you.