Display all user types profile inside author.php
-
function change_author_permalink_base() {
global $wp_rewrite;
$wp_rewrite->author_base = “user”;
}
add_filter( ‘init’, ‘change_author_permalink_base’ );
/* ===This is for the random button ==== */
add_action(‘init’,’random_add_rewrite’);I manage to change the author/ into users/ now is there a way to display subscriber profiles inside author php too?
- The topic ‘Display all user types profile inside author.php’ is closed to new replies.