Viewing 1 replies (of 1 total)
  • Thread Starter aous77

    (@aous77)

    i created a taxonomy-author.php and placed it in my theme which made it possible to customize the output of the page.

    also if you need to have this page redirect to the wordpress’ native author page then place the following code somewhere on the taxonomy-author.php template:

    <?php
    $authorslug = preg_replace( '#^cap\-#', '', get_query_var( 'term' ) );
    wp_redirect( home_url('/author/' . $authorslug ), 301 ); exit;
    ?>
Viewing 1 replies (of 1 total)
  • The topic ‘co-authors plugin & the_taxonomies’ is closed to new replies.